[vlc-devel] commit: Fixed block_Realloc. (Laurent Aimar )

git version control git at videolan.org
Tue Sep 1 21:34:19 CEST 2009


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Tue Sep  1 21:13:15 2009 +0200| [fdf97225e5f008c1fc29d32bfe12b0b70481e189] | committer: Laurent Aimar 

Fixed block_Realloc.

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

 src/misc/block.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/src/misc/block.c b/src/misc/block.c
index 437afa6..815d3e8 100644
--- a/src/misc/block.c
+++ b/src/misc/block.c
@@ -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;




More information about the vlc-devel mailing list