diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-11-12 00:13:14 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-11-12 00:13:14 +0000 |
commit | c5dd03adfe9290487c8b041909166ed7c7ed16ff (patch) | |
tree | d05c2182e5b5a0f29b5a10a97abeedb1a8efd83a | |
parent | a125ccea11e2f44a4519953af67ee622e82a8519 (diff) | |
download | xine-lib-c5dd03adfe9290487c8b041909166ed7c7ed16ff.tar.gz xine-lib-c5dd03adfe9290487c8b041909166ed7c7ed16ff.tar.bz2 |
(very) small memleak
CVS patchset: 3244
CVS date: 2002/11/12 00:13:14
-rw-r--r-- | src/xine-engine/load_plugins.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index 228aabd9f..856f2140f 100644 --- a/src/xine-engine/load_plugins.c +++ b/src/xine-engine/load_plugins.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: load_plugins.c,v 1.111 2002/11/03 20:44:37 guenter Exp $ + * $Id: load_plugins.c,v 1.112 2002/11/12 00:13:14 guenter Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -322,6 +322,7 @@ static void collect_plugins(xine_t *this, char *path){ } /* if (stat(...)) */ free(str); } /* while */ + closedir (dir); } /* if (dir) */ } /* collect_plugins */ |