Fix one more mismatched delete call

This commit is contained in:
Ray Haleblian 2022-09-29 07:25:16 -04:00
parent ff62b7f327
commit 577ee73d91
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -7,6 +7,7 @@
*.o *.o
*.img *.img
*.tar.gz *.tar.gz
#.*#
.DS_Store .DS_Store
/build /build
/doc /doc

View File

@ -160,7 +160,7 @@ int epub_parse_currentfile(unzFile uf, epub_data_t *epd)
} while (len); } while (len);
sprintf(msg,"info : read %d bytes total\n",len_total); Log(msg); sprintf(msg,"info : read %d bytes total\n",len_total); Log(msg);
XML_ParserFree(p); XML_ParserFree(p);
delete filebuf; delete [] filebuf;
return(rc); return(rc);
} }