]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
hw/mips_itu: fix off-by-one reported by Coverity
authorLeon Alrae <leon.alrae@imgtec.com>
Mon, 4 Apr 2016 08:59:00 +0000 (09:59 +0100)
committerLeon Alrae <leon.alrae@imgtec.com>
Fri, 8 Apr 2016 08:19:26 +0000 (09:19 +0100)
Fix off-by-one error in ITC Tag read.

Remove the switch as we just want to check if index is in valid range
rather than test against list of values.

Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
hw/misc/mips_itu.c

index 8461d2379b6cb9c5d9c91c6f79174d2934412396..da5455062db371338704fbcda495a15bcaac684b 100644 (file)
@@ -66,18 +66,13 @@ static uint64_t itc_tag_read(void *opaque, hwaddr addr, unsigned size)
 {
     MIPSITUState *tag = (MIPSITUState *)opaque;
     uint64_t index = addr >> 3;
-    uint64_t ret = 0;
 
-    switch (index) {
-    case 0 ... ITC_ADDRESSMAP_NUM:
-        ret = tag->ITCAddressMap[index];
-        break;
-    default:
+    if (index >= ITC_ADDRESSMAP_NUM) {
         qemu_log_mask(LOG_GUEST_ERROR, "Read 0x%" PRIx64 "\n", addr);
-        break;
+        return 0;
     }
 
-    return ret;
+    return tag->ITCAddressMap[index];
 }
 
 static void itc_reconfigure(MIPSITUState *tag)