Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b4b814fe authored by Navid Emamdoost's avatar Navid Emamdoost Committed by Luca Coelho
Browse files

iwlwifi: dbg_ini: fix memory leak in alloc_sgtable



In alloc_sgtable if alloc_page fails, the alocated table should be
released.

Signed-off-by: default avatarNavid Emamdoost <navid.emamdoost@gmail.com>
Signed-off-by: default avatarLuca Coelho <luciano.coelho@intel.com>
parent 8188a18e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -646,6 +646,7 @@ static struct scatterlist *alloc_sgtable(int size)
				if (new_page)
					__free_page(new_page);
			}
			kfree(table);
			return NULL;
		}
		alloc_size = min_t(int, size, PAGE_SIZE);