diff --git a/src/mono/mono/eglib/gfile.c b/src/mono/mono/eglib/gfile.c index 4d5390c193294..5720a54a71265 100644 --- a/src/mono/mono/eglib/gfile.c +++ b/src/mono/mono/eglib/gfile.c @@ -112,6 +112,7 @@ is_ascii_string (const gchar *str) while (*str) { if (!g_isascii (*str)) return FALSE; + str ++; } return TRUE; }