Fix a typo introduced in revision 4272

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4276 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
aurel32 2008-04-28 08:54:59 +00:00
parent 3ea8749da4
commit 5b2575789b
1 changed files with 1 additions and 1 deletions

2
exec.c
View File

@ -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;