mirror of
https://git.suyu.dev/suyu/flatpak.git
synced 2025-01-06 14:26:07 +00:00
21 lines
438 B
Diff
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)
|