tools/usbip: fixes potential (minor) "buffer overflow" (detected on recent gcc with...
authorJulien BOIBESSOT <julien.boibessot@armadeus.com>
Tue, 5 Dec 2017 15:09:04 +0000 (16:09 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 8 Dec 2017 16:31:20 +0000 (17:31 +0100)
commit82a2b827c96883d8b39a58bba23d222d6b0de7ff
tree308c7e3981659127cd99cc61c1e135adbde162fc
parent62354454625741f0569c2cbe45b2d192f8fd258e
tools/usbip: fixes potential (minor) "buffer overflow" (detected on recent gcc with -Werror)

Fixes following build error:
vhci_driver.c: In function 'refresh_imported_device_list':
vhci_driver.c:118:37: error: 'snprintf' output may be truncated before
the last format character [-Werror=format-truncation=]
    snprintf(status, sizeof(status), "status.%d", i);
                                     ^~~~~~~~~~~
vhci_driver.c:118:4: note: 'snprintf' output between 9 and 18 bytes into
a destination of size 17
    snprintf(status, sizeof(status), "status.%d", i);
    ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cc1: all warnings being treated as errors

Signed-off-by: Julien BOIBESSOT <julien.boibessot@armadeus.com>
Acked-by: Shuah Khan <shuahkh@osg.samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
tools/usb/usbip/libsrc/vhci_driver.c