MDS v2/MDX: Actually use nvr_path() when removing the temporary file, fixes the piling up them.

This commit is contained in:
OBattler
2026-02-04 00:21:50 +01:00
parent 657155ac97
commit 419a3acb85

View File

@@ -2965,7 +2965,7 @@ image_close(void *local)
free(img);
if (temp_file[0] != 0x00) {
remove(temp_file);
remove(nvr_path(temp_file));
temp_file[0] = 0x00;
}
}