1
0
Fork 0
mirror of https://git.suyu.dev/suyu/flatpak.git synced 2025-01-06 14:26:07 +00:00
yuzu-suyu-flatpak/shared-modules/vorbisgain/0005-double_fclose.patch
2024-03-07 20:28:57 -03:00

21 lines
438 B
Diff

Description: Don't call fclose() twice.
Author: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=632947
---
vorbis.c | 5 -----
1 file changed, 5 deletions(-)
--- a/vorbis.c
+++ b/vorbis.c
@@ -813,11 +813,6 @@
fclose(infile);
}
- if (infile != NULL)
- {
- fclose(infile);
- }
-
if (delete_temp)
{
if (remove(temp_name) != 0)