Commit edede43e authored by Brad Hards's avatar Brad Hards Committed by Rusty Russell

ciniparser: avoid dead store to sta

This is always overwritten later in the function.
parent 48e8d586
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment