commit | 816c9311f1144a03da1fdc4feb2f6b0d3299fca0 | [log] [tgz] |
---|---|---|
author | Dan Carpenter <dan.carpenter@oracle.com> | Mon Jan 09 11:20:16 2017 +0300 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Tue Jan 10 21:46:41 2017 +0100 |
tree | 18af1a5a0779a32f1c0964396b0cf42b3897979f | |
parent | ddc5c9a37be4517270453ce909d3dfcc8de58230 [diff] |
misc: mic: double free on ioctl error path This function only has one caller. Freeing "vdev" here leads to a use after free bug. There are several other error paths in this function but this is the only one which frees "vdev". It looks like the kfree() can be safely removed. Fixes: 61e9c905df78 ("misc: mic: Enable VOP host side functionality") Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>