Commit 3e61c4fa authored by chenqiwu's avatar chenqiwu Committed by Greg Kroah-Hartman

pstore/platform: fix potential mem leak if pstore_init_fs failed

[ Upstream commit 8a57d6d4 ]

There is a potential mem leak when pstore_init_fs failed,
since the pstore compression maybe unlikey to initialized
successfully. We must clean up the allocation once this
unlikey issue happens.
Signed-off-by: default avatarchenqiwu <chenqiwu@xiaomi.com>
Link: https://lore.kernel.org/r/1581068800-13817-1-git-send-email-qiwuchen55@gmail.comSigned-off-by: default avatarKees Cook <keescook@chromium.org>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
parent 7371ef43
...@@ -802,9 +802,9 @@ static int __init pstore_init(void) ...@@ -802,9 +802,9 @@ static int __init pstore_init(void)
ret = pstore_init_fs(); ret = pstore_init_fs();
if (ret) if (ret)
return ret; free_buf_for_compression();
return 0; return ret;
} }
late_initcall(pstore_init); late_initcall(pstore_init);
......
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