fix very nasty bug that could cause billion of segfaults

This commit is contained in:
Andrzej Rybczak
2009-09-23 03:31:39 +02:00
parent aad9146397
commit e99b1c63e9

View File

@@ -41,7 +41,7 @@ namespace
bool has_non_ascii_chars(const char *s)
{
for (; s; ++s)
for (; *s; ++s)
if (char_non_ascii(*s))
return true;
return false;