Loading...
framework/ProcessScavenger.cpp dyld-1340 dyld-1286.10
--- dyld/dyld-1340/framework/ProcessScavenger.cpp
+++ dyld/dyld-1286.10/framework/ProcessScavenger.cpp
@@ -42,7 +42,6 @@
 #include "Header.h"
 #include "DyldSharedCache.h"
 #include "Vector.h"
-#include "SafeVMPrimitives.h"
 
 #include <sys/fsgetpath.h>
 #include <mach-o/dyld_priv.h>
@@ -147,9 +146,7 @@
             (void)vm_deallocate(mach_task_self(), (vm_address_t)localAddress, _size);
             return;
         }
-        remote_memory_audit_start();
         memcpy(_data, (void *)localAddress, _size);
-        remote_memory_audit_end();
         (void)vm_deallocate(mach_task_self(), (vm_address_t)localAddress, _size);
     }
     RemoteMap(const RemoteMap&) = delete;