[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL v3 22/22] linux-user: check return value of malloc()
From: |
riku . voipio |
Subject: |
[Qemu-devel] [PULL v3 22/22] linux-user: check return value of malloc() |
Date: |
Fri, 22 Aug 2014 16:24:40 +0300 |
From: zhanghailiang <address@hidden>
Signed-off-by: zhanghailiang <address@hidden>
Acked-by: Riku Voipio <address@hidden>
Signed-off-by: Riku Voipio <address@hidden>
---
linux-user/syscall.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index ebdc70e..7ff7c21 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -2904,6 +2904,10 @@ static inline abi_long do_msgsnd(int msqid, abi_long
msgp,
if (!lock_user_struct(VERIFY_READ, target_mb, msgp, 0))
return -TARGET_EFAULT;
host_mb = malloc(msgsz+sizeof(long));
+ if (!host_mb) {
+ unlock_user_struct(target_mb, msgp, 0);
+ return -TARGET_ENOMEM;
+ }
host_mb->mtype = (abi_long) tswapal(target_mb->mtype);
memcpy(host_mb->mtext, target_mb->mtext, msgsz);
ret = get_errno(msgsnd(msqid, host_mb, msgsz, msgflg));
--
2.0.1
- [Qemu-devel] [PULL v3 08/22] linux-user: add setns and unshare, (continued)
- [Qemu-devel] [PULL v3 08/22] linux-user: add setns and unshare, riku . voipio, 2014/08/22
- [Qemu-devel] [PULL v3 03/22] linux-user: Fix syscall instruction usermode emulation on X86_64, riku . voipio, 2014/08/22
- [Qemu-devel] [PULL v3 02/22] linux-user: redirect openat calls, riku . voipio, 2014/08/22
- [Qemu-devel] [PULL v3 10/22] linux-user: Dereference Pointer Argument to ipc/semctl Sys Call, riku . voipio, 2014/08/22
- [Qemu-devel] [PULL v3 09/22] linux-user: PPC64 semid_ds Doesnt Include _unused1 and _unused2, riku . voipio, 2014/08/22
- [Qemu-devel] [PULL v3 04/22] linux-user: Fix conversion of sigevent argument to timer_create, riku . voipio, 2014/08/22
- [Qemu-devel] [PULL v3 12/22] linux-user: Make ipc syscall's third argument an abi_long, riku . voipio, 2014/08/22
- [Qemu-devel] [PULL v3 18/22] linux-user: Minimum Sig Handler Stack Size for PPC64 ELF V2, riku . voipio, 2014/08/22
- [Qemu-devel] [PULL v3 19/22] linux-user: clock_nanosleep errno Handling on PPC, riku . voipio, 2014/08/22
- [Qemu-devel] [PULL v3 16/22] linux-user: Detect fault in sched_rr_get_interval, riku . voipio, 2014/08/22
- [Qemu-devel] [PULL v3 22/22] linux-user: check return value of malloc(),
riku . voipio <=
- [Qemu-devel] [PULL v3 15/22] linux-user: Handle NULL sched_param argument to sched_*, riku . voipio, 2014/08/22
- [Qemu-devel] [PULL v3 21/22] linux-user: writev Partial Writes, riku . voipio, 2014/08/22
- [Qemu-devel] [PULL v3 13/22] linux-user: Conditionally Pass Attribute Pointer to mq_open(), riku . voipio, 2014/08/22
- [Qemu-devel] [PULL v3 20/22] linux-user: Support target-to-host translation of mlockall argument, riku . voipio, 2014/08/22
- [Qemu-devel] [PULL v3 14/22] linux-user: Detect Negative Message Sizes in msgsnd System Call, riku . voipio, 2014/08/22
- [Qemu-devel] [PULL v3 11/22] linux-user: Properly Handle semun Structure In Cross-Endian Situations, riku . voipio, 2014/08/22
- [Qemu-devel] [PULL v3 17/22] linux-user: Move get_ppc64_abi, riku . voipio, 2014/08/22
- Re: [Qemu-devel] [PULL v3 00/22] Linux-user updates, Peter Maydell, 2014/08/22