From: Proxcloud <help@proxcloud.eu>
Date: Thu, 8 Feb 2018 12:40:57 +0000 (+0800)
Subject: change product desc to 9 and add extra null byte
X-Git-Tag: v3.1.0~68^2~1
X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/d03a573eee1e2d9f87990524fee3502d5e730665?hp=13c25f892e003f1fa3639b7154782c3146aad4eb

change product desc to 9 and add extra null byte
---

diff --git a/common/usb_cdc.c b/common/usb_cdc.c
index 51dcacdb..82522623 100644
--- a/common/usb_cdc.c
+++ b/common/usb_cdc.c
@@ -183,11 +183,12 @@ static const char StrDescManufacturer[] = {
 };
 
 static const char StrDescProduct[] = {
-  4,			// Length
+  9,			// Length
   0x03,			// Type is string
   'P', 0x00,
   'M', 0x00,
-  '3', 0x00
+  '3', 0x00,
+   0x00
 };
 
 const char* getStringDescriptor(uint8_t idx)