Commit 46d4efcd authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

AllocatePluginDir: remove dummy b_die check

Nothing can really kill VLC when browsing plugins, since nothing has
started.
parent 9577d830
...@@ -1102,7 +1102,7 @@ static void AllocatePluginDir( vlc_object_t *p_this, module_bank_t *p_bank, ...@@ -1102,7 +1102,7 @@ static void AllocatePluginDir( vlc_object_t *p_this, module_bank_t *p_bank,
i_dirlen = strlen( psz_dir ); i_dirlen = strlen( psz_dir );
/* Parse the directory and try to load all files it contains. */ /* 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; struct stat statbuf;
unsigned int i_len; unsigned int i_len;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment