qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 21/22] scsi: mark an strncpy use as valid


From: Jim Meyering
Subject: [Qemu-devel] [PATCH 21/22] scsi: mark an strncpy use as valid
Date: Wed, 9 May 2012 11:24:05 +0200

From: Jim Meyering <address@hidden>


Signed-off-by: Jim Meyering <address@hidden>
---
 hw/scsi-bus.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/hw/scsi-bus.c b/hw/scsi-bus.c
index dbdb99c..916f425 100644
--- a/hw/scsi-bus.c
+++ b/hw/scsi-bus.c
@@ -402,6 +402,7 @@ static bool scsi_target_emulate_inquiry(SCSITargetReq *r)
         r->buf[7] = 0x10 | (r->req.bus->info->tcq ? 0x02 : 0); /* Sync, TCQ.  
*/
         memcpy(&r->buf[8], "QEMU    ", 8);
         memcpy(&r->buf[16], "QEMU TARGET     ", 16);
+        /* This use of strncpy is ok. */
         strncpy((char *) &r->buf[32], QEMU_VERSION, 4);
     }
     return true;
-- 
1.7.10.1.487.ga3935e6




reply via email to

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