commit | 3821bf4abb7f78c90af7fa2975df6618906b11ec | [log] [tgz] |
---|---|---|
author | Dan Carpenter <dan.carpenter@oracle.com> | Fri Jul 20 09:58:16 2012 +0300 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Wed Aug 15 15:17:39 2012 -0700 |
tree | 4ac3fbae82c1d034713ecf31b3c34479fb98b6fc | |
parent | 644034c21209feaddd6d584669ffb40561525d18 [diff] |
USB: whci-hcd: fix NULL dereference on allocation failure If usb_create_hcd() fails here then we dereference "whc" inside the call to whc_clean_up() before it has been set. The compiler would have warned about this if we hadn't initialized all the pointers to NULL at the start of the function. I've cleaned that up as well. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>