]> git.sesse.net Git - vlc/commitdiff
nuv demux: typo in post-malloc check. (CID 144)
authorDerk-Jan Hartman <hartman@videolan.org>
Thu, 9 Oct 2008 14:36:54 +0000 (16:36 +0200)
committerDerk-Jan Hartman <hartman@videolan.org>
Thu, 9 Oct 2008 14:36:54 +0000 (16:36 +0200)
modules/demux/nuv.c

index 38ccecd63c304d500dc7a399c9b8a3f65dcc25bb..0a7c8917c8876941765c4ba2945d8d0892ad1acc 100644 (file)
@@ -787,7 +787,7 @@ static int SeekTableLoad( demux_t *p_demux, demux_sys_t *p_sys )
         {
             p_kfa_table = malloc( fh.i_length );
 
-            if( p_seek_table == NULL )
+            if( p_kfa_table == NULL )
             {
                 free( p_seek_table );
                 return VLC_ENOMEM;