[MPlayer-cvslog] r37638 - trunk/libmpdemux/demux_avi.c

reimar subversion at mplayerhq.hu
Tue Feb 9 21:35:08 CET 2016


Author: reimar
Date: Tue Feb  9 21:35:08 2016
New Revision: 37638

Log:
Remove pointless assignments.

Avoids Coverity warnings.

Modified:
   trunk/libmpdemux/demux_avi.c

Modified: trunk/libmpdemux/demux_avi.c
==============================================================================
--- trunk/libmpdemux/demux_avi.c	Tue Feb  9 21:31:41 2016	(r37637)
+++ trunk/libmpdemux/demux_avi.c	Tue Feb  9 21:35:08 2016	(r37638)
@@ -410,13 +410,13 @@ do{
   if(stream_eof(demux->stream)) return 0;
 
   if(id==mmioFOURCC('L','I','S','T')){
-      id=stream_read_dword_le(demux->stream);      // list type
+      stream_read_dword_le(demux->stream);      // list type
       continue;
   }
 
   if(id==mmioFOURCC('R','I','F','F')){
       mp_msg(MSGT_DEMUX,MSGL_V,"additional RIFF header...\n");
-      id=stream_read_dword_le(demux->stream);      // "AVIX"
+      stream_read_dword_le(demux->stream);      // "AVIX"
       continue;
   }
 


More information about the MPlayer-cvslog mailing list