mirror of https://github.com/xqemu/xqemu.git
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:
parent
3ea8749da4
commit
5b2575789b
2
exec.c
2
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? */
|
/* FIXME - should this return an error rather than just fail? */
|
||||||
return;
|
return;
|
||||||
memcpy(buf, p, l);
|
memcpy(buf, p, l);
|
||||||
unlock_user(p, addr, l);
|
unlock_user(p, addr, 0);
|
||||||
}
|
}
|
||||||
len -= l;
|
len -= l;
|
||||||
buf += l;
|
buf += l;
|
||||||
|
|
Loading…
Reference in New Issue