]> git.sesse.net Git - vlc/commitdiff
Extensions/Lua: free extension strings
authorJean-Philippe André <jpeg@videolan.org>
Thu, 28 Jan 2010 23:33:05 +0000 (00:33 +0100)
committerJean-Philippe André <jpeg@videolan.org>
Fri, 29 Jan 2010 00:15:49 +0000 (01:15 +0100)
modules/misc/lua/extension.c

index 6c53651d6d171f3e166a2e6265b65d4302bbd615..05c08daa4ac1bacc14826519c77435420d22496d 100644 (file)
@@ -389,6 +389,10 @@ exit:
     {
         free( p_ext->psz_name );
         free( p_ext->psz_title );
+        free( p_ext->psz_url );
+        free( p_ext->psz_author );
+        free( p_ext->psz_description );
+        free( p_ext->psz_version );
         vlc_mutex_destroy( &p_ext->p_sys->command_lock );
         vlc_mutex_destroy( &p_ext->p_sys->running_lock );
         vlc_cond_destroy( &p_ext->p_sys->wait );