Hello.
If an invalid filepath is passed to ELFIO_Err ELFI::Load( const std::string& sFileName ) as in the code snippet below, the destructor does not release all memory.
IELFI * pReader = 0;
ELFIO::GetInstance()->CreateELFI(&pReader);
CString filename;
filename = "C:\\Toolkit\\Backend.dxe";
pReader->Load((std::string)filename);
This is because the function below bails out without...
2009-09-09 21:45:06 UTC in ELFIO