]> git.sesse.net Git - vlc/commitdiff
Fixed block_Realloc.
authorLaurent Aimar <fenrir@videolan.org>
Tue, 1 Sep 2009 19:13:15 +0000 (21:13 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Tue, 1 Sep 2009 19:16:01 +0000 (21:16 +0200)
src/misc/block.c

index 437afa6f53e6802551abdacd824480bc5f752ab3..815d3e8f546756edde90178e136ed32f90329be9 100644 (file)
@@ -78,6 +78,7 @@ static void BlockRelease( block_t *p_block )
 
 static void BlockMetaCopy( block_t *restrict out, const block_t *in )
 {
+    out->p_next    = in->p_next;
     out->i_dts     = in->i_dts;
     out->i_pts     = in->i_pts;
     out->i_flags   = in->i_flags;