From: pbrook Date: Sat, 11 Mar 2006 20:37:58 +0000 (+0000) Subject: Fix off by one length calciulation. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ce5c37c2a4f90473af5255e4ff3ea2c2f260718f;p=qemu.git Fix off by one length calciulation. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1781 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/hw/usb.c b/hw/usb.c index b2830c5900..758b341ff0 100644 --- a/hw/usb.c +++ b/hw/usb.c @@ -183,7 +183,7 @@ int set_usb_string(uint8_t *buf, const char *str) q = buf; len = strlen(str); - *q++ = 2 * len + 1; + *q++ = 2 * len + 2; *q++ = 3; for(i = 0; i < len; i++) { *q++ = str[i];