fixed another memory leak

This commit is contained in:
nemu 2009-10-06 09:34:03 +00:00
parent 856aaba0a7
commit ea3fc6b037

View File

@ -550,6 +550,10 @@ int main(int argc, char *argv[])
} }
// clean up // clean up
if (saxParser) {
delete saxParser;
saxParser = 0;
}
if (startupHandler) { if (startupHandler) {
delete startupHandler; delete startupHandler;
startupHandler = 0; startupHandler = 0;