forked from OSchip/llvm-project
Make sure Op->getType() is a PointerType before we cast<> it.
Bug found with AFL fuzz. llvm-svn: 236193
This commit is contained in:
parent
4b828d35fd
commit
9a19e56306
|
@ -4065,6 +4065,8 @@ std::error_code BitcodeReader::ParseFunctionBody(Function *F) {
|
|||
Type *Ty = nullptr;
|
||||
if (OpNum + 3 == Record.size())
|
||||
Ty = getTypeByID(Record[OpNum++]);
|
||||
if (!isa<PointerType>(Op->getType()))
|
||||
return Error("Load operand is not a pointer type");
|
||||
if (!Ty)
|
||||
Ty = cast<PointerType>(Op->getType())->getElementType();
|
||||
else if (Ty != cast<PointerType>(Op->getType())->getElementType())
|
||||
|
|
Binary file not shown.
|
@ -117,3 +117,8 @@ RUN: not llvm-dis -disable-output %p/Inputs/invalid-too-big-fwdref.bc 2>&1 | \
|
|||
RUN: FileCheck --check-prefix=HUGE-FWDREF %s
|
||||
|
||||
HUGE-FWDREF: Invalid record
|
||||
|
||||
RUN: not llvm-dis -disable-output %p/Inputs/invalid-load-pointer-type.bc 2>&1 | \
|
||||
RUN: FileCheck --check-prefix=LOAD-BAD-TYPE %s
|
||||
|
||||
LOAD-BAD-TYPE: Load operand is not a pointer type
|
||||
|
|
Loading…
Reference in New Issue