[MPlayer-cvslog] r35355 - trunk/m_option.c
    reimar 
    subversion at mplayerhq.hu
       
    Mon Nov  5 22:41:39 CET 2012
    
    
  
Author: reimar
Date: Mon Nov  5 22:41:39 2012
New Revision: 35355
Log:
Remove assignment that is duplicated a few lines down,
after the NULL check.
Modified:
   trunk/m_option.c
Modified: trunk/m_option.c
==============================================================================
--- trunk/m_option.c	Mon Nov  5 22:37:25 2012	(r35354)
+++ trunk/m_option.c	Mon Nov  5 22:41:39 2012	(r35355)
@@ -472,7 +472,7 @@ static void free_str_list(void* dst) {
 }
 
 static int str_list_add(char** add, int n,void* dst,int pre) {
-  char** lst = VAL(dst);
+  char** lst;
   int ln;
 
   if(!dst) return M_OPT_PARSER_ERR;
    
    
More information about the MPlayer-cvslog
mailing list