projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3271e27
)
um: vector: Fix memory leak in vector_config
author
Xiang Yang
<xiangyang3@huawei.com>
Tue, 15 Nov 2022 07:32:25 +0000
(15:32 +0800)
committer
Richard Weinberger
<richard@nod.at>
Wed, 1 Feb 2023 21:11:27 +0000
(22:11 +0100)
If the return value of the uml_parse_vector_ifspec function is NULL,
we should call kfree(params) to prevent memory leak.
Fixes: 49da7e64f33e ("High Performance UML Vector Network Driver")
Signed-off-by: Xiang Yang <xiangyang3@huawei.com>
Acked-By: Anton Ivanov <anton.ivanov@kot-begemot.co.uk>
Signed-off-by: Richard Weinberger <richard@nod.at>
arch/um/drivers/vector_kern.c
patch
|
blob
|
history
diff --git
a/arch/um/drivers/vector_kern.c
b/arch/um/drivers/vector_kern.c
index ded7c47d2fbe5a87da2ff550224694baa95d6053..131b7cb29576727cf116402ac526a1c3079489b4 100644
(file)
--- a/
arch/um/drivers/vector_kern.c
+++ b/
arch/um/drivers/vector_kern.c
@@
-767,6
+767,7
@@
static int vector_config(char *str, char **error_out)
if (parsed == NULL) {
*error_out = "vector_config failed to parse parameters";
+ kfree(params);
return -EINVAL;
}