Commit 8f88c73a authored by Xiang Yang's avatar Xiang Yang Committed by Richard Weinberger

um: vector: Fix memory leak in vector_config

If the return value of the uml_parse_vector_ifspec function is NULL,
we should call kfree(params) to prevent memory leak.

Fixes: 49da7e64 ("High Performance UML Vector Network Driver")
Signed-off-by: default avatarXiang Yang <xiangyang3@huawei.com>
Acked-By: default avatarAnton Ivanov <anton.ivanov@kot-begemot.co.uk>
Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
parent 3271e27b
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment