Skip to content

Commit

Permalink
staging: usbip: Remove NULL check before kfree
Browse files Browse the repository at this point in the history
This patch was generated by the following semantic patch:
// <smpl>
@@ expression E; @@
- if (E != NULL) { kfree(E); }
+ kfree(E);

@@ expression E; @@
- if (E != NULL) { kfree(E); E = NULL; }
+ kfree(E);
+ E = NULL;
// </smpl>

Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Ilia Mirkin authored and Greg Kroah-Hartman committed Mar 14, 2011
1 parent 9f7ff70 commit 06dde50
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions drivers/staging/usbip/stub_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -264,11 +264,9 @@ void stub_device_cleanup_urbs(struct stub_device *sdev)

kmem_cache_free(stub_priv_cache, priv);

if (urb->transfer_buffer != NULL)
kfree(urb->transfer_buffer);
kfree(urb->transfer_buffer);

if (urb->setup_packet != NULL)
kfree(urb->setup_packet);
kfree(urb->setup_packet);

usb_free_urb(urb);
}
Expand Down

0 comments on commit 06dde50

Please sign in to comment.