Skip to content

Commit

Permalink
[mono] Fix an infinite loop in eglib. (#98774)
Browse files Browse the repository at this point in the history
  • Loading branch information
vargaz committed Feb 21, 2024
1 parent 8309c70 commit 8819b22
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/mono/mono/eglib/gfile.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ is_ascii_string (const gchar *str)
while (*str) {
if (!g_isascii (*str))
return FALSE;
str ++;
}
return TRUE;
}
Expand Down

0 comments on commit 8819b22

Please sign in to comment.