(svn r16161) -Fix (r16128): AILoadConfig() could not handle NULL settings.

This commit is contained in:
frosch 2009-04-26 14:57:42 +00:00
parent 53887e07bb
commit 3301afa5c3
1 changed files with 1 additions and 1 deletions

View File

@ -1133,7 +1133,7 @@ static void AILoadConfig(IniFile *ini, const char *grpname)
continue;
}
}
config->StringToSettings(item->value);
if (item->value != NULL) config->StringToSettings(item->value);
}
}