From 46d4efcdc80f5ceff7ccf56b9611e62f8a7fece4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sun, 2 Aug 2009 19:01:35 +0300 Subject: [PATCH] AllocatePluginDir: remove dummy b_die check Nothing can really kill VLC when browsing plugins, since nothing has started. --- src/modules/modules.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/modules.c b/src/modules/modules.c index 815d11cf92..a495d7ef71 100644 --- a/src/modules/modules.c +++ b/src/modules/modules.c @@ -1102,7 +1102,7 @@ static void AllocatePluginDir( vlc_object_t *p_this, module_bank_t *p_bank, i_dirlen = strlen( psz_dir ); /* Parse the directory and try to load all files it contains. */ - while( !p_this->p_libvlc->b_die && ( file = readdir( dir ) ) ) + while( ( file = readdir( dir ) ) ) { struct stat statbuf; unsigned int i_len; -- 2.39.5