(svn r1384) Fix: Sometimes when lists were saved, a lot of blank lines had been added

This commit is contained in:
dominik 2005-01-05 11:19:57 +00:00
parent 87e5984ae2
commit 61761cfab1
1 changed files with 1 additions and 1 deletions

View File

@ -962,7 +962,7 @@ static void SaveList(IniFile *ini, const char *grpname, char **list, int len)
if (!group)
return;
for (i = 0; i != len; i++) {
if (list[i] == '\0') continue;
if (list[i] == NULL || list[i][0] == '\0') continue;
if (first) { // add first item to the head of the group
item = ini_item_alloc(group, list[i], strlen(list[i]));