From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55561) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZoBQf-0000nG-Ow for qemu-devel@nongnu.org; Mon, 19 Oct 2015 10:28:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZoBQd-00079I-28 for qemu-devel@nongnu.org; Mon, 19 Oct 2015 10:28:49 -0400 Sender: Paolo Bonzini References: <1426345935-7721-1-git-send-email-sw@weilnetz.de> From: Paolo Bonzini Message-ID: <5624FE1B.7010202@redhat.com> Date: Mon, 19 Oct 2015 16:28:43 +0200 MIME-Version: 1.0 In-Reply-To: <1426345935-7721-1-git-send-email-sw@weilnetz.de> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] linux-user: Add missing check for return value of lock_user List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Stefan Weil , QEMU Trivial Cc: Riku Voipio , QEMU Developer On 14/03/2015 16:12, Stefan Weil wrote: > This fixes a warning from Coverity: > "Dereference null return value (NULL_RETURNS)" > > Signed-off-by: Stefan Weil > --- > 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; > } > /****************************************************************************/ > Hi Stefan, are you going to update and resend this patch? Thanks, Paolo