mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
bugfix: only fclose recout if it was opened
This commit is contained in:
parent
eaf4434ae9
commit
d2d877933a
|
@ -361,7 +361,7 @@ int main(int argc, char *argv[])
|
||||||
fclose(input);
|
fclose(input);
|
||||||
fclose(output);
|
fclose(output);
|
||||||
if(cqmfile != NULL) fclose(cqmfile);
|
if(cqmfile != NULL) fclose(cqmfile);
|
||||||
fclose(recout);
|
if(recout != NULL) fclose(recout);
|
||||||
|
|
||||||
// Deallocating
|
// Deallocating
|
||||||
config_destroy(cfg);
|
config_destroy(cfg);
|
||||||
|
|
Loading…
Reference in a new issue