MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / FreeMemoryInfoArray

Function FreeMemoryInfoArray

firmwareninja.cpp:48–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46
47
48static void FreeMemoryInfoArray(BNFirmwareNinjaFunctionMemoryAccesses** fma, size_t count)
49{
50 for (size_t i = 0; i < count; i++)
51 {
52 for (size_t j = 0; j < fma[i]->count; j++)
53 delete fma[i]->accesses[j];
54
55 delete[] fma[i]->accesses;
56 delete fma[i];
57 }
58}
59
60
61FirmwareNinjaRelationship::FirmwareNinjaRelationship(Ref<BinaryView> view, BNFirmwareNinjaRelationship* handle)

Callers 3

GetReferenceTreeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected