Fix issue with segfaulting because of misplaced variable set

Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
This commit is contained in:
sigonasr2, Sig, Sigo 2022-07-19 16:04:05 +00:00 committed by GitHub
parent c6970bc35d
commit 966c67cb23
2 changed files with 4 additions and 3 deletions

BIN
current

Binary file not shown.

View File

@ -24,9 +24,9 @@ int main(int argc,char**argv) {
}
}
fseek(file,0,0);
const char*names[nameCount];
while (!feof(file)) {
char*names[nameCount];
int currentCount=0;
while (!feof(file)) {
if (fgetc(file)=='"') {
//Start reading the name.
char*newName=malloc(1);
@ -37,11 +37,12 @@ int main(int argc,char**argv) {
newName[length-2]=c;
newName[length-1]='\0';
}
//printf("%s\n",newName);
names[currentCount++]=newName;
}
}
for (int i=0;i<nameCount;i++) {
printf("%s\n",(char*)((*names)[i]));
printf("%s\n",names[i]);
}
return 0;
}