This commit is contained in:
munin 2013-11-22 21:19:43 -05:00
parent 5e84744095
commit 5956722feb

View File

@ -775,7 +775,11 @@ parsed_pe *ParsePEFromFile(const char *filePath) {
}
void DestructParsedPE(parsed_pe *p) {
if(p == NULL) {
return;
}
delete p->internal;
delete p;
return;
}