Skip to content

Commit 5601897

Browse files
pdschubertvulder
andauthored
Update lib/PhasarLLVM/DataFlowSolver/IfdsIde/Problems/IDESecureHeapPropagation.cpp
Co-authored-by: Florian Sattler <vuld3r@gmail.com>
1 parent 95e6816 commit 5601897

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/PhasarLLVM/DataFlowSolver/IfdsIde/Problems/IDESecureHeapPropagation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ IDESecureHeapPropagation::SHPGenEdgeFn::getInstance(l_t Val) {
315315
nullptr};
316316
auto Ind = static_cast<std::underlying_type<l_t>::type>(Val);
317317
if (!Cache.at(Ind)) {
318-
Cache.at(Ind) = std::make_shared<SHPGenEdgeFn>(Val);
318+
Cache[Ind] = std::make_shared<SHPGenEdgeFn>(Val);
319319
}
320320
return Cache.at(Ind);
321321
}

0 commit comments

Comments
 (0)