Fix issue in sqlHexDecode

This commit is contained in:
brenosilva 2011-10-18 01:44:39 +00:00
parent d4079971c6
commit 150bc418dd

View File

@ -445,6 +445,7 @@ int sql_hex2bytes_inplace(unsigned char *data, int len) {
} }
} else { } else {
*d++ = data[i]; *d++ = data[i];
found = 0;
} }
count++; count++;