You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not a big deal, but you call VMMDLL_Map_GetVadW without a matching VMMDLL_MemFree call.
Not sure how often get_memory_region gets called, but it will result in a memory leak each time.
If it's only called once not an issue since as we know all allocations get killed on process exit.
Just need to add a VMMDLL_MemFree before returning from get_memory_region().
The text was updated successfully, but these errors were encountered:
Not a big deal, but you call
VMMDLL_Map_GetVadW
without a matchingVMMDLL_MemFree
call.Not sure how often
get_memory_region
gets called, but it will result in a memory leak each time.If it's only called once not an issue since as we know all allocations get killed on process exit.
Just need to add a
VMMDLL_MemFree
before returning fromget_memory_region()
.The text was updated successfully, but these errors were encountered: