Off by one ;)

This commit is contained in:
def 2015-07-11 19:28:45 +02:00
parent 6d68e22cd1
commit da68023f7a

View file

@ -1195,7 +1195,7 @@ void CSqlScore::FuzzyString(char *pString)
break;
newString[pos++] = pString[i];
if (pString[i] != '\\' && str_utf8_isstart(pString[i]))
if (pString[i] != '\\' && str_utf8_isstart(pString[i+1]))
newString[pos++] = '%';
}