(libretro-common) fill_pathname_abbreviated_or_relative - fix warning -

variable is uninitialized
This commit is contained in:
twinaphex 2021-08-11 18:50:03 +02:00
parent 013dd30bde
commit b375e08c67

View File

@ -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';