diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-05-05 00:08:26 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-05-05 00:08:26 -0400 |
commit | a81ecc1631db6330d2b9ba11374b5812733a99ee (patch) | |
tree | efd354ea539cd5eb6cc285824f4d26ff1376bf64 /arch/h8300/kernel | |
parent | f42787dff056eefa64f936ffe9a6836d0301742f (diff) | |
download | op-kernel-dev-a81ecc1631db6330d2b9ba11374b5812733a99ee.zip op-kernel-dev-a81ecc1631db6330d2b9ba11374b5812733a99ee.tar.gz |
h8300: single_open() leaks
Cc: stable@vger.kernel.org
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/h8300/kernel')
-rw-r--r-- | arch/h8300/kernel/gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/h8300/kernel/gpio.c b/arch/h8300/kernel/gpio.c index b02c752..084bfd0 100644 --- a/arch/h8300/kernel/gpio.c +++ b/arch/h8300/kernel/gpio.c @@ -161,7 +161,7 @@ static const struct file_operations gpio_proc_fops = { .open = gpio_proc_open, .read = seq_read, .llseek = seq_lseek, - .release = seq_release, + .release = single_release, }; static __init int register_proc(void) |