qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 2/3] fix variable type in qemu-io.c


From: Joel Schopp
Subject: [Qemu-devel] [PATCH 2/3] fix variable type in qemu-io.c
Date: Wed, 21 Jul 2010 15:05:16 -0500

The variable len can get a negative return value from cvtnum,
which we check for, but which is impossible with the current
unsigned variable type.  Currently the if(len < 0) check is
pointless.  This patch fixes that.

Signed-off-by: Joel Schopp <address@hidden>
---
 qemu-io.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/qemu-io.c b/qemu-io.c
index 9adda4c..1a9c13d 100644
--- a/qemu-io.c
+++ b/qemu-io.c
@@ -135,7 +135,7 @@ create_iovec(QEMUIOVector *qiov, char **argv, int nr_iov, 
int pattern)
 
        for (i = 0; i < nr_iov; i++) {
                char *arg = argv[i];
-                uint64_t len;
+                int64_t len;
 
                len = cvtnum(arg);
                if (len < 0) {
@@ -144,7 +144,7 @@ create_iovec(QEMUIOVector *qiov, char **argv, int nr_iov, 
int pattern)
                }
 
                /* should be SIZE_T_MAX, but that doesn't exist */
-               if (len > UINT_MAX) {
+               if (len > INT_MAX) {
                        printf("too large length argument -- %s\n", arg);
                        goto fail;
                }
-- 
1.7.0.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]