]> git.sesse.net Git - vlc/commitdiff
* ./src/misc/modules.c: disabled module autohide until we find out why a
authorSam Hocevar <sam@videolan.org>
Wed, 22 May 2002 17:19:46 +0000 (17:19 +0000)
committerSam Hocevar <sam@videolan.org>
Wed, 22 May 2002 17:19:46 +0000 (17:19 +0000)
    reloaded module sometimes does not work properly.

src/misc/modules.c

index 6bf48f5e224e06f06c41c9c6fedb49cc96c02204..eb2a426377ade2c79ea95a62146a6d836d040f86 100644 (file)
@@ -2,7 +2,7 @@
  * modules.c : Built-in and plugin modules management functions
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: modules.c,v 1.60 2002/05/18 14:03:13 gbazin Exp $
+ * $Id: modules.c,v 1.61 2002/05/22 17:19:46 sam Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *          Ethan C. Baldridge <BaldridgeE@cadmus.com>
@@ -228,7 +228,9 @@ void module_ManageBank( void )
         {
             if( p_module->i_unused_delay < MODULE_HIDE_DELAY )
             {
-                p_module->i_unused_delay++;
+                /* FIXME: sometimes a module that has been unloaded does not
+                 * work properly when loaded again. Check what's wrong. */
+                //p_module->i_unused_delay++;
             }
             else
             {