changeset 35261:1c18199bbf7c

Remove assignment that is duplicated a few lines down, after the NULL check.
author reimar
date Mon, 05 Nov 2012 21:41:39 +0000
parents b1b262fe38a4
children 49fc594fda43
files m_option.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/m_option.c	Mon Nov 05 21:37:25 2012 +0000
+++ b/m_option.c	Mon Nov 05 21:41:39 2012 +0000
@@ -472,7 +472,7 @@
 }
 
 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;