BUG: fix memory leak

This commit is contained in:
Berk Geveci 2001-11-20 17:27:04 -05:00
parent 46568242fa
commit a43f3c99c7
1 changed files with 1 additions and 1 deletions

View File

@ -84,9 +84,9 @@ int main (int argc, char *argv[])
makeCommand.size()+1) != 0)
{
makeCommand = buffer;
delete [] buffer;
}
#endif
delete [] buffer;\
}
makeCommand += " ";
makeCommand += executableName;