# HG changeset patch # User reimar # Date 1352151699 0 # Node ID 1c18199bbf7c606435af7d450fc93dc80dfe0cfc # Parent b1b262fe38a42727522b79b57d270c10aa977600 Remove assignment that is duplicated a few lines down, after the NULL check. diff -r b1b262fe38a4 -r 1c18199bbf7c m_option.c --- 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;