1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00

Fix use-after-free error.

llvm-svn: 109288
This commit is contained in:
Owen Anderson 2010-07-23 23:27:43 +00:00
parent 7049c83125
commit e64c7514fb

View File

@ -79,10 +79,10 @@ namespace llvm {
(const unsigned char *)Buffer->getBufferEnd())) {
std::string ErrMsg;
Module *M = ParseBitcodeFile(Buffer, Context, &ErrMsg);
// ParseBitcodeFile does not take ownership of the Buffer.
delete Buffer;
if (M == 0)
Err = SMDiagnostic(Buffer->getBufferIdentifier(), ErrMsg);
// ParseBitcodeFile does not take ownership of the Buffer.
delete Buffer;
return M;
}