core: comment unneeded assignment in function string_split_shell (make C static analyzer happy)

v2.8-utf8proc
Sebastien Helleu 2014-02-22 12:50:38 +01:00
parent 913de0c29b
commit bcf0a94bf4
1 changed files with 1 additions and 1 deletions

View File

@ -1804,7 +1804,7 @@ string_split_shell (const char *string, int *num_items)
args[num_args - 1] = strdup (temp);
args[num_args] = NULL;
temp[0] = '\0';
temp_len = 0;
/*temp_len = 0;*/
}
free (string2);