From 86b5b361daeff4fd1f4a297deac11e03c2516228 Mon Sep 17 00:00:00 2001 From: radius Date: Mon, 23 May 2016 18:05:41 -0500 Subject: [PATCH] fix the last commit --- libretro-common/file/config_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-common/file/config_file.c b/libretro-common/file/config_file.c index 2ffeba4605..0aa5077928 100644 --- a/libretro-common/file/config_file.c +++ b/libretro-common/file/config_file.c @@ -265,7 +265,7 @@ static char *strip_comment(char *str) char *strend = str + strlen(str); bool cut_comment = true; - while (!string_is_empty) + while (!string_is_empty(str)) { char *comment = NULL; char *literal = strchr(str, '\"');