fclose the file in case of failure in fwrite in test_resampler.cpp.

Bug 1263872 - [Static Analysis][Resource leak] In function dump(...) from test_resampler.cpp
This commit is contained in:
Andi-Bogdan Postelnicu 2016-04-12 13:07:18 +02:00 коммит произвёл Paul Adenot
Родитель 55afd4e682
Коммит 86aa9cb8e5
1 изменённых файлов: 0 добавлений и 1 удалений

Просмотреть файл

@ -93,7 +93,6 @@ void dump(const char * name, T * frames, size_t count)
if (count != fwrite(frames, sizeof(T), count, file)) { if (count != fwrite(frames, sizeof(T), count, file)) {
fprintf(stderr, "error writing to %s\n", name); fprintf(stderr, "error writing to %s\n", name);
return;
} }
fclose(file); fclose(file);
} }