Browse Source

ciniparser: avoid dead store to sta

This is always overwritten later in the function.
Brad Hards 15 years ago
parent
commit
edede43eef
1 changed files with 0 additions and 1 deletions
  1. 0 1
      ccan/ciniparser/ciniparser.c

+ 0 - 1
ccan/ciniparser/ciniparser.c

@@ -128,7 +128,6 @@ line_status ciniparser_line(char *input_line, char *section,
 	strcpy(line, strstrip(input_line));
 	len = (int) strlen(line);
 
-	sta = LINE_UNPROCESSED;
 	if (len < 1) {
 		/* Empty line */
 		sta = LINE_EMPTY;