]> git.sesse.net Git - vlc/commitdiff
* modules/demux/asf/libasf.c: fixed memory leak.
authorGildas Bazin <gbazin@videolan.org>
Sun, 8 Oct 2006 16:32:47 +0000 (16:32 +0000)
committerGildas Bazin <gbazin@videolan.org>
Sun, 8 Oct 2006 16:32:47 +0000 (16:32 +0000)
modules/demux/asf/libasf.c

index 428b233f35d43784f6abc7acea8513de8557fca8..91e2eeaa16969b0a050de5378b5537b1c56a50c7 100644 (file)
@@ -1155,6 +1155,8 @@ static void ASF_FreeObject_extended_content_description( asf_object_t *p_obj)
         FREENULL( p_ec->ppsz_name[i] );
         FREENULL( p_ec->ppsz_value[i] );
     }
+    FREENULL( p_ec->ppsz_name );
+    FREENULL( p_ec->ppsz_value );
 }