mirror of
https://git.suyu.dev/suyu/flatpak.git
synced 2026-01-08 07:28:04 +01:00
Init
This commit is contained in:
commit
e571c4fbe8
139 changed files with 8839 additions and 0 deletions
13
shared-modules/vorbisgain/0010-fclose.patch
Normal file
13
shared-modules/vorbisgain/0010-fclose.patch
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
Solve "too many open files" by closing those which are not compatible with vorbisgain. Thanks to Marcel Rehberg for the patch.
|
||||
--- a/vorbis.c
|
||||
+++ b/vorbis.c
|
||||
@@ -357,7 +357,8 @@
|
||||
{
|
||||
vorbis_error(result, _("Couldn't process '%s': "), filename);
|
||||
}
|
||||
-
|
||||
+ // make sure file is closed, since ov_open failed we are still responsible
|
||||
+ fclose(file);
|
||||
return -1;
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue