Skip to content

Commit

Permalink
Fixed logic bug: used wrong variable.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Feb 19, 2009
1 parent 4046b7b commit 9c33281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/preprocess.c
Expand Up @@ -229,7 +229,7 @@ int main(int argc, char **argv)
} // else

for (i = 0; i < defcount; i++)
free((void *) defs[defcount].identifier);
free((void *) defs[i].identifier);
free(defs);

free(include_paths);
Expand Down

0 comments on commit 9c33281

Please sign in to comment.