diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/input/libdvdnav/remap.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -2,6 +2,7 @@ xine-lib (1.1.17) 2009-??-?? * Add support for Matroska SIMPLEBLOCK. * Add support for sndio (OpenBSD sound API). * Correct invalid MIME info in the MOD demuxer. + * Fix a resource leak in libdvdnav. xine-lib (1.1.16.3) 2009-04-03 * Security fixes: diff --git a/src/input/libdvdnav/remap.c b/src/input/libdvdnav/remap.c index 43c81c66f..df0be29ce 100644 --- a/src/input/libdvdnav/remap.c +++ b/src/input/libdvdnav/remap.c @@ -216,6 +216,7 @@ remap_t* remap_loadmap( char *title) { remap_add_node( map, tmp); } } + close (fp); /* ignoring errors... */ if (map->nblocks == 0 && map->debug == 0) return NULL; return map; |