From b375e08c67d3c37c6a7b64803bcefc770a413d6b Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 11 Aug 2021 18:50:03 +0200 Subject: [PATCH] (libretro-common) fill_pathname_abbreviated_or_relative - fix warning - variable is uninitialized --- libretro-common/file/file_path.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libretro-common/file/file_path.c b/libretro-common/file/file_path.c index aca7cfbd18..fc112709b7 100644 --- a/libretro-common/file/file_path.c +++ b/libretro-common/file/file_path.c @@ -1162,6 +1162,7 @@ void fill_pathname_abbreviated_or_relative(char *out_path, const char *in_refpat in_path_conformed[0] = '\0'; in_refpath_conformed[0] = '\0'; + expanded_path[0] = '\0'; absolute_path[0] = '\0'; relative_path[0] = '\0'; abbreviated_path[0] = '\0';