OSDN Git Service

Fix a typo introduced in revision 4272
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>
Mon, 28 Apr 2008 08:54:59 +0000 (08:54 +0000)
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>
Mon, 28 Apr 2008 08:54:59 +0000 (08:54 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4276 c046a42c-6fe2-441c-8c8c-71466251a162

exec.c

diff --git a/exec.c b/exec.c
index c556de0..d9e959d 100644 (file)
--- a/exec.c
+++ b/exec.c
@@ -2557,7 +2557,7 @@ void cpu_physical_memory_rw(target_phys_addr_t addr, uint8_t *buf,
                 /* FIXME - should this return an error rather than just fail? */
                 return;
             memcpy(buf, p, l);
-            unlock_user(p, addr, l);
+            unlock_user(p, addr, 0);
         }
         len -= l;
         buf += l;