mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 20:07:46 +09:00
Merge tag 'modules-6.4-rc5-second-pull' of git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux
Pull modules fix from Luis Chamberlain: "A zstd fix by lucas as he tested zstd decompression support" * tag 'modules-6.4-rc5-second-pull' of git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux: module/decompress: Fix error checking on zstd decompression
This commit is contained in:
@@ -257,7 +257,7 @@ static ssize_t module_zstd_decompress(struct load_info *info,
|
||||
do {
|
||||
struct page *page = module_get_next_page(info);
|
||||
|
||||
if (!IS_ERR(page)) {
|
||||
if (IS_ERR(page)) {
|
||||
retval = PTR_ERR(page);
|
||||
goto out;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user