Commit 63391cb52aac6be7e458ec8f44890ca7dbd7ae68

Authored by ghollingworth
1 parent 50fc0f49

Fix uninitialised variable

Showing 1 changed file with 1 additions and 1 deletions
... ... @@ -423,7 +423,7 @@ int file_server(libusb_device_handle * usb_device)
423 423 int main(int argc, char *argv[])
424 424 {
425 425 FILE * second_stage;
426   - FILE * fp_sign;
  426 + FILE * fp_sign = NULL;
427 427 libusb_context *ctx;
428 428 libusb_device_handle *usb_device;
429 429 struct libusb_device_descriptor desc;
... ...