All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-trivial] [PATCH] linux-user: Add missing check for return value of lock_user
@ 2015-03-14 15:12 ` Stefan Weil
  0 siblings, 0 replies; 6+ messages in thread
From: Stefan Weil @ 2015-03-14 15:12 UTC (permalink / raw)
  To: QEMU Trivial; +Cc: Stefan Weil, Riku Voipio, QEMU Developer

This fixes a warning from Coverity:
"Dereference null return value (NULL_RETURNS)"

Signed-off-by: Stefan Weil <sw@weilnetz.de>
---
 linux-user/flatload.c |    8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/linux-user/flatload.c b/linux-user/flatload.c
index 566a7a8..56ac790 100644
--- a/linux-user/flatload.c
+++ b/linux-user/flatload.c
@@ -97,11 +97,13 @@ static int target_pread(int fd, abi_ulong ptr, abi_ulong len,
                         abi_ulong offset)
 {
     void *buf;
-    int ret;
+    int ret = -TARGET_EFAULT;
 
     buf = lock_user(VERIFY_WRITE, ptr, len, 0);
-    ret = pread(fd, buf, len, offset);
-    unlock_user(buf, ptr, len);
+    if (buf) {
+        ret = pread(fd, buf, len, offset);
+        unlock_user(buf, ptr, len);
+    }
     return ret;
 }
 /****************************************************************************/
-- 
1.7.10.4



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2015-10-19 14:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-14 15:12 [Qemu-trivial] [PATCH] linux-user: Add missing check for return value of lock_user Stefan Weil
2015-03-14 15:12 ` [Qemu-devel] " Stefan Weil
2015-03-15 11:15 ` [Qemu-trivial] " Peter Maydell
2015-03-15 11:15   ` Peter Maydell
2015-10-19 14:28 ` [Qemu-trivial] " Paolo Bonzini
2015-10-19 14:28   ` [Qemu-devel] " Paolo Bonzini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.