Fixed double free

This commit is contained in:
Nate Choe
2022-04-22 23:25:10 -05:00
parent 2fdd7d0afb
commit 91e9f2d20c
2 changed files with 4 additions and 5 deletions

View File

@@ -32,13 +32,13 @@ int copyhtml(FILE *in, FILE *out) {
addspace = 0;
c = fgetc(in);
if (c == EOF)
return 0;
goto end;
if (isspace(c)) {
addspace = 1;
while (isspace(c)) {
c = fgetc(in);
if (c == EOF)
return 0;
goto end;
}
}
if (c == '<' || c == '>') {
@@ -52,5 +52,7 @@ int copyhtml(FILE *in, FILE *out) {
fputc(c, out);
}
}
end:
fclose(in);
return 0;
}

View File

@@ -67,14 +67,12 @@ int main(int argc, char **argv) {
fputs("Failed to copy header\n", stderr);
return 1;
}
fclose(headerfile);
}
if (template != NULL) {
FILE *templatefile;
templatefile = fopen(template, "r");
if (parsetemplate(templatefile, outfile))
return 1;
fclose(templatefile);
}
if (footer != NULL) {
FILE *footerfile;
@@ -83,7 +81,6 @@ int main(int argc, char **argv) {
fputs("Failed to copy footer\n", stderr);
return 1;
}
fclose(footerfile);
}
if (outfile != stdout)
fclose(outfile);