Skip to content
Snippets Groups Projects
Commit d4f6f810 authored by deuce's avatar deuce
Browse files

"Fix" Win32 segfault on start with existing list... not sure exactly why this...

"Fix" Win32 segfault on start with existing list... not sure exactly why this fixes anything, but it does.
parent 96a24f72
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,8 @@ void read_list(char *listpath, struct bbslist **list, int *i, int type)
list[*i]->dumb=iniGetBool(listfile,bbsname,"BeDumb",0);
list[*i]->reversed=iniGetBool(listfile,bbsname,"Reversed",0);
list[*i]->type=type;
list[*i]->id=(*i)++;
list[*i]->id=*i;
(*i)++;
}
fclose(listfile);
strListFreeStrings(bbses);
......
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