qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Markus Armbruster <armbru@redhat.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PULL 2/5] tests/vhost-user-bridge: Fix misuse of isdigit()
Date: Wed, 22 May 2019 15:47:23 +0200	[thread overview]
Message-ID: <20190522134726.19225-3-armbru@redhat.com> (raw)
In-Reply-To: <20190522134726.19225-1-armbru@redhat.com>

vubr_set_host() passes char values to isdigit().  Undefined behavior
when the value is negative.

Fix by using qemu_isdigit() instead.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190514180311.16028-3-armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
[Missing #include "qemu-common.h" fixed]
---
 tests/vhost-user-bridge.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/tests/vhost-user-bridge.c b/tests/vhost-user-bridge.c
index 0033b61f2e..5b771de7a3 100644
--- a/tests/vhost-user-bridge.c
+++ b/tests/vhost-user-bridge.c
@@ -30,6 +30,7 @@
 #define _FILE_OFFSET_BITS 64
 
 #include "qemu/osdep.h"
+#include "qemu-common.h"
 #include "qemu/atomic.h"
 #include "qemu/iov.h"
 #include "standard-headers/linux/virtio_net.h"
@@ -645,7 +646,7 @@ vubr_host_notifier_setup(VubrDev *dev)
 static void
 vubr_set_host(struct sockaddr_in *saddr, const char *host)
 {
-    if (isdigit(host[0])) {
+    if (qemu_isdigit(host[0])) {
         if (!inet_aton(host, &saddr->sin_addr)) {
             fprintf(stderr, "inet_aton() failed.\n");
             exit(1);
-- 
2.17.2



  parent reply	other threads:[~2019-05-22 13:52 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-22 13:47 [Qemu-devel] [PULL 0/5] Miscellaneous patches for 2019-05-22 Markus Armbruster
2019-05-22 13:47 ` [Qemu-devel] [PULL 1/5] qemu-bridge-helper: Fix misuse of isspace() Markus Armbruster
2019-05-30 11:06   ` Peter Maydell
2019-05-22 13:47 ` Markus Armbruster [this message]
2019-05-22 13:47 ` [Qemu-devel] [PULL 3/5] gdbstub: Reject invalid RLE repeat counts Markus Armbruster
2019-05-22 13:47 ` [Qemu-devel] [PULL 4/5] gdbstub: Fix misuse of isxdigit() Markus Armbruster
2019-05-22 13:47 ` [Qemu-devel] [PULL 5/5] cutils: Simplify how parse_uint() checks for whitespace Markus Armbruster
2019-05-23 11:00 ` [Qemu-devel] [PULL 0/5] Miscellaneous patches for 2019-05-22 Peter Maydell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190522134726.19225-3-armbru@redhat.com \
    --to=armbru@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).