This commit is contained in:
Alexey Milovidov 2018-01-12 02:53:51 +03:00
parent d33ac0ea15
commit 230062c63d

View File

@ -952,7 +952,7 @@ static inline const char * tryReadIntText(T & x, const char * pos, const char *
{ {
ReadBufferFromMemory in(pos, end - pos); ReadBufferFromMemory in(pos, end - pos);
tryReadIntText(x, in); tryReadIntText(x, in);
return in.position(); return pos + in.count();
} }