aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hid/hid-picolcd.c
diff options
context:
space:
mode:
authorJulia Lawall <julia@diku.dk>2010-05-15 05:46:36 -0400
committerJiri Kosina <jkosina@suse.cz>2010-05-17 04:42:37 -0400
commitaeacb6fd30c800e8229905eac7023777a472d772 (patch)
treedd4b904cb23f070d05fae452c0d89722b670151b /drivers/hid/hid-picolcd.c
parent9d71ea057bc4823058d8fe27d34e987eb9880457 (diff)
HID: picolcd: Eliminate use after free
The skip label frees resp, which has not been allocated at the point of this goto and then does a break, based on the fact that err is non-zero. This is replaced by a break directly. A simplified version of the semantic match that finds this problem is as follows: (http://coccinelle.lip6.fr/) // <smpl> @free@ expression E; position p; @@ kfree@p(E) @@ expression free.E, subE<=free.E, E1; position free.p; @@ kfree@p(E) ... ( subE = E1 | * E ) // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/hid-picolcd.c')
-rw-r--r--drivers/hid/hid-picolcd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-picolcd.c b/drivers/hid/hid-picolcd.c
index 95253b310541..7aabf65c48ef 100644
--- a/drivers/hid/hid-picolcd.c
+++ b/drivers/hid/hid-picolcd.c
@@ -1616,7 +1616,7 @@ static ssize_t _picolcd_flash_write(struct picolcd_data *data, int report_id,
1616 raw_data[len_off] = s > 32 ? 32 : s; 1616 raw_data[len_off] = s > 32 ? 32 : s;
1617 if (copy_from_user(raw_data+len_off+1, u, raw_data[len_off])) { 1617 if (copy_from_user(raw_data+len_off+1, u, raw_data[len_off])) {
1618 err = -EFAULT; 1618 err = -EFAULT;
1619 goto skip; 1619 break;
1620 } 1620 }
1621 resp = picolcd_send_and_wait(data->hdev, report_id, raw_data, 1621 resp = picolcd_send_and_wait(data->hdev, report_id, raw_data,
1622 len_off+1+raw_data[len_off]); 1622 len_off+1+raw_data[len_off]);