MCPcopy Create free account
hub / github.com/KasperskyLab/hrtng / selection2inline

Function selection2inline

src/deinline.cpp:1710–1724  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1708 }
1709
1710 void selection2inline(mbl_array_t *mba)
1711 {
1712 if (selection_bgn == BADADDR || selection_end == BADADDR)
1713 return;
1714
1715 sInline *inl = new sInline();
1716 bool res = inl->create_from_entry_exit(mba, &allBBs, selection_bgn, selection_end);
1717 if (res)
1718 inlinesLib.insert(inl);
1719 else
1720 delete inl;
1721
1722 selection_bgn = BADADDR;
1723 selection_end = BADADDR;
1724 }
1725
1726 void findMatchedInlines()
1727 {

Callers 2

deinlineFunction · 0.85
ACT_DEFFunction · 0.85

Calls 1

Tested by

no test coverage detected