[vlc-devel] commit: Update forgotten function calls (Geoffroy Couprie )

git version control git at videolan.org
Wed Feb 18 13:21:16 CET 2009


vlc | branch: master | Geoffroy Couprie <geo.couprie at gmail.com> | Wed Feb 18 13:09:26 2009 +0100| [10c08ec843a2d6d96d081f5bd987a3064825c40a] | committer: Geoffroy Couprie 

Update forgotten function calls

Fixed by Pierre Ynard

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=10c08ec843a2d6d96d081f5bd987a3064825c40a
---

 src/modules/modules.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/modules/modules.c b/src/modules/modules.c
index 805ea21..476809e 100644
--- a/src/modules/modules.c
+++ b/src/modules/modules.c
@@ -1059,7 +1059,7 @@ static void AllocatePluginDir( vlc_object_t *p_this, module_bank_t *p_bank,
         if( GetFileAttributes( psz_path ) & FILE_ATTRIBUTE_DIRECTORY )
 #endif
         {
-            AllocatePluginDir( p_this, psz_path, i_maxdepth - 1 );
+            AllocatePluginDir( p_this, p_bank, psz_path, i_maxdepth - 1 );
         }
         else if( i_len > strlen( LIBEXT )
                   /* We only load files ending with LIBEXT */
@@ -1087,7 +1087,7 @@ static void AllocatePluginDir( vlc_object_t *p_this, module_bank_t *p_bank,
             }
             psz_file = psz_path;
 
-            AllocatePluginFile( p_this, psz_file, i_time, i_size );
+            AllocatePluginFile( p_this, p_bank, psz_file, i_time, i_size );
         }
     }
     while( !p_this->p_libvlc->b_die && FindNextFile( handle, &finddata ) );




More information about the vlc-devel mailing list