dbms: restore leading slash in pathFull. [#METR-13679]

This commit is contained in:
Andrey Mironov 2014-12-19 17:17:02 +03:00
parent ef3c9190e7
commit b957a2a9c3

View File

@ -280,7 +280,7 @@ struct ExtractPathFull
if (nullptr != (pos = strchr(data, '/')) && pos[1] == '/' && nullptr != (pos = strchr(pos + 2, '/')))
{
/// no leading slash
res_data = pos + 1;
res_data = pos;
res_size = end - res_data;
}
}