Commit c43a6ff9 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Merge tag 'modules-6.4-rc5-second-pull' of...

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
parents 792fc921 fadb74f9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
		}