]> rtime.felk.cvut.cz Git - lisovros/qemu_apohw.git/commitdiff
Fix a compiler error with DEBUG_REMAP enabled (Thayne Harbaugh).
authorbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>
Mon, 24 Dec 2007 13:47:52 +0000 (13:47 +0000)
committerbalrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162>
Mon, 24 Dec 2007 13:47:52 +0000 (13:47 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3845 c046a42c-6fe2-441c-8c8c-71466251a162

linux-user/qemu.h

index c0780084ba667efba3af0df2c2c3d543f40ee2d7..b33ad8942f9667173b9500c884cabf746de4a373 100644 (file)
@@ -6,6 +6,11 @@
 
 #include "cpu.h"
 
+#undef DEBUG_REMAP
+#ifdef DEBUG_REMAP
+#include <stdlib.h>
+#endif /* DEBUG_REMAP */
+
 #ifdef TARGET_ABI32
 typedef uint32_t abi_ulong;
 typedef int32_t abi_long;
@@ -370,7 +375,7 @@ static inline void unlock_user(void *host_ptr, abi_ulong guest_addr,
     if (host_ptr == g2h(guest_addr))
         return;
     if (len > 0)
-        memcpy(g2h(guest_ptr), host_ptr, len);
+        memcpy(g2h(guest_addr), host_ptr, len);
     free(host_ptr);
 #endif
 }