[WATCHDOG] pcwd_usb.c: fix a NULL pointer dereference

The Coverity checker noted that this resulted in a NULL pointer
reference if we were coming from

if (usb_pcwd == NULL) {
printk(KERN_ERR PFX "Out of memory\n");
goto error;
}

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Signed-off-by: Andrew Morton <akpm@osdl.org>

authored by Adrian Bunk and committed by Wim Van Sebroeck c9d1a0b8 6bbc20bc

+2 -1
+2 -1
drivers/char/watchdog/pcwd_usb.c
··· 705 705 err_out_unregister_reboot: 706 706 unregister_reboot_notifier(&usb_pcwd_notifier); 707 707 error: 708 - usb_pcwd_delete (usb_pcwd); 708 + if (usb_pcwd) 709 + usb_pcwd_delete(usb_pcwd); 709 710 usb_pcwd_device = NULL; 710 711 return retval; 711 712 }