Commit c8d6aecd authored by Gildas Bazin's avatar Gildas Bazin

* ./plugins/mpeg_vdec/vpar_headers.c: don't try to deference a null
pointer (fix from sam).
parent 908777d2
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* vpar_headers.c : headers parsing * vpar_headers.c : headers parsing
***************************************************************************** *****************************************************************************
* Copyright (C) 1999-2001 VideoLAN * Copyright (C) 1999-2001 VideoLAN
* $Id: vpar_headers.c,v 1.21 2002/05/28 18:34:42 stef Exp $ * $Id: vpar_headers.c,v 1.22 2002/05/30 13:58:17 gbazin Exp $
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* Stphane Borel <stef@via.ecp.fr> * Stphane Borel <stef@via.ecp.fr>
...@@ -279,6 +279,7 @@ int vpar_ParseHeader( vpar_thread_t * p_vpar ) ...@@ -279,6 +279,7 @@ int vpar_ParseHeader( vpar_thread_t * p_vpar )
case SEQUENCE_END_CODE: case SEQUENCE_END_CODE:
intf_WarnMsg(3, "vpar warning: sequence end code received"); intf_WarnMsg(3, "vpar warning: sequence end code received");
if( p_vpar->sequence.p_backward != NULL )
p_vpar->sequence.p_backward->b_force = 1; p_vpar->sequence.p_backward->b_force = 1;
ReferenceUpdate( p_vpar, I_CODING_TYPE, NULL ); ReferenceUpdate( p_vpar, I_CODING_TYPE, NULL );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment