Closed a file pointer leak with CUE file interpretation. Coverity CID 21821.

This commit is contained in:
Thomas Schmitt 2015-10-26 15:03:21 +00:00
parent 2b82095236
commit d31a72100b
2 changed files with 3 additions and 1 deletions

View File

@ -1 +1 @@
#define Cdrskin_timestamP "2015.10.26.145941"
#define Cdrskin_timestamP "2015.10.26.150529"

View File

@ -2155,6 +2155,8 @@ ex:
cue_crs_destroy(&crs, 0);
BURN_FREE_MEM(line);
BURN_FREE_MEM(msg);
if (fp != NULL)
fclose(fp);
return ret;
}