Skip to content
Snippets Groups Projects
Commit 4fca1e63 authored by rswindell's avatar rswindell
Browse files

Bugfix: iniSetString() would overwrite the next section line if the key was

not found in the section and another section followed.
Now inserts new keys before any blank lines separating sections.
parent 96a65b0f
No related branches found
No related tags found
No related merge requests found
......@@ -260,8 +260,10 @@ char* iniSetString(str_list_t* list, const char* section, const char* key, const
style->value_separator="=";
sprintf(str, "%s%-*s%s%s", style->key_prefix, style->key_len, key, style->value_separator, value);
i=find_value_index(*list, section, key, curval);
if((*list)[i]==NULL)
if((*list)[i]==NULL || *(*list)[i]==INI_OPEN_SECTION_CHAR) {
while(i && *(*list)[i-1]==0) i--; /* Insert before blank lines, not after */
return strListInsert(list, str, i);
}
if(strcmp(curval,value)==0)
return((*list)[i]); /* no change */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment