From: Peter Senna Tschudin <peter.se...@gmail.com>

This patch removes null test before calls to kfree() as kfree() can
handle null pointers safely.

Signed-off-by: Peter Senna Tschudin <peter.se...@collabora.com>
---
Tested by compilation only.

 drivers/usb/misc/sisusbvga/sisusb.c | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/drivers/usb/misc/sisusbvga/sisusb.c 
b/drivers/usb/misc/sisusbvga/sisusb.c
index 875e365..8d0b29a 100644
--- a/drivers/usb/misc/sisusbvga/sisusb.c
+++ b/drivers/usb/misc/sisusbvga/sisusb.c
@@ -76,15 +76,11 @@ static void sisusb_free_buffers(struct sisusb_usb_data 
*sisusb)
        int i;
 
        for (i = 0; i < NUMOBUFS; i++) {
-               if (sisusb->obuf[i]) {
-                       kfree(sisusb->obuf[i]);
-                       sisusb->obuf[i] = NULL;
-               }
-       }
-       if (sisusb->ibuf) {
-               kfree(sisusb->ibuf);
-               sisusb->ibuf = NULL;
+               kfree(sisusb->obuf[i]);
+               sisusb->obuf[i] = NULL;
        }
+       kfree(sisusb->ibuf);
+       sisusb->ibuf = NULL;
 }
 
 static void sisusb_free_urbs(struct sisusb_usb_data *sisusb)
-- 
2.5.0

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to