net/wireless/wext-core.c: add missing kfree
authorJulia Lawall <Julia.Lawall@lip6.fr>
Mon, 9 Apr 2012 09:01:09 +0000 (11:01 +0200)
committerJohn W. Linville <linville@tuxdriver.com>
Mon, 9 Apr 2012 19:54:50 +0000 (15:54 -0400)
Free extra as done in the error-handling code just above.

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: John W. Linville <linville@tuxdriver.com>

net/wireless/wext-core.c

index 0af7f54..af648e0 100644 (file)
@@ -780,8 +780,10 @@ static int ioctl_standard_iw_point(struct iw_point *iwp, unsigned int cmd,
                if (cmd == SIOCSIWENCODEEXT) {
                        struct iw_encode_ext *ee = (void *) extra;
 
-                       if (iwp->length < sizeof(*ee) + ee->key_len)
-                               return -EFAULT;
+                       if (iwp->length < sizeof(*ee) + ee->key_len) {
+                               err = -EFAULT;
+                               goto out;
+                       }
                }
        }