From: aurel32 Date: Mon, 28 Apr 2008 08:54:59 +0000 (+0000) Subject: Fix a typo introduced in revision 4272 X-Git-Tag: xen-3.3.0-rc1~194^2^2~176 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=5b2575789bf30630d6f1c185ddb239945df96fa5;p=qemu-xen-3.3-testing.git Fix a typo introduced in revision 4272 git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4276 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/exec.c b/exec.c index c556de04..d9e959d6 100644 --- 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;