diff options
author | Mathias K <kesmtp@freenet.de> | 2011-12-15 17:43:23 +0100 |
---|---|---|
committer | Spencer Oliver <spen@spen-soft.co.uk> | 2011-12-16 11:25:56 +0000 |
commit | 886ea0b9148381eefc148aeb4d7c6d63894e494b (patch) | |
tree | a14041a97492f46fe1334954b92306aead6141b6 /src | |
parent | 667d510dabd5644c2191b3c828c6d50d8417c9cc (diff) | |
download | riscv-openocd-886ea0b9148381eefc148aeb4d7c6d63894e494b.zip riscv-openocd-886ea0b9148381eefc148aeb4d7c6d63894e494b.tar.gz riscv-openocd-886ea0b9148381eefc148aeb4d7c6d63894e494b.tar.bz2 |
Initialize return value.
Because no future error checking we will initialize the pointer to
a know value.
Change-Id: I2466eeb413245a398927ec9f3742c2a9a3d51baf
Signed-off-by: Mathias K <kesmtp@freenet.de>
Reviewed-on: http://openocd.zylin.com/283
Tested-by: jenkins
Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>
Reviewed-by: Øyvind Harboe <oyvindharboe@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/jtag/drivers/libusb1_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jtag/drivers/libusb1_common.c b/src/jtag/drivers/libusb1_common.c index c6cb494..1aae10d 100644 --- a/src/jtag/drivers/libusb1_common.c +++ b/src/jtag/drivers/libusb1_common.c @@ -105,7 +105,7 @@ int jtag_libusb_set_configuration(jtag_libusb_device_handle *devh, struct jtag_libusb_device *udev = jtag_libusb_get_device(devh); int retCode = -99; - struct libusb_config_descriptor *config; + struct libusb_config_descriptor *config = NULL; libusb_get_config_descriptor(udev, configuration, &config); retCode = libusb_set_configuration(devh, config->bConfigurationValue); |