From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id DEF1D43F8C9; Tue, 21 Jul 2026 21:38:45 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784669927; cv=none; b=WaeAdz9EBiNAqG5tJV+bBUlKSM9J058zSCw/UXTPvXHWxBbD5YnJdHek6hoQ8f7NSe9sl0RsRk9hRXumSB0LbwXTMESxSSFR4jcPi9zu4TGTxtyD7QTHSIcTTGz8RSdOxDZTePpCQJMy37O+If4UBdjXrTo4L5bylHyT8VOS9iw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784669927; c=relaxed/simple; bh=5sYFsutBiLYyuZuDN1Gcor4laLi/NsWwYyDuPBJ+C+M=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=LfR7kR5plb0RQNgpU2Q6YorxsNsmJVmiXrRAzWFtHAJoqX2arev/MTVL3mK+gPUr8ehbBTs08AY0QFANzUD2thyaadkVWI4IvZpOEwmba6YBSTL7x1f8eeyKFJdwkqNNJYPoyBDQxX97lpk5znte6biTRQKxEaqEjdroP6VBG4Y= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=K0nt7IOo; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="K0nt7IOo" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 5064B1F000E9; Tue, 21 Jul 2026 21:38:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784669925; bh=IkUMf1VhGJVzimtA2F6Es/TaAz6agl7iSeHfBAwNXNY=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=K0nt7IOo8BpfVhiCnlo0L3vL9Tj4XrXczFq4uZzgwR/4qesWLmNDmSc/YpcsMxf92 /3jHL4CAwb2OCRNv+dT6Py9Xq3wCuU6K2oDbckKXBfmwSpPsFRz3RqSMNVO+2De+LD ylC9qXoI8n6FzYzuc8MlsxoQGPbnBtNIrH9ogYNY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Abdun Nihaal , Helge Deller Subject: [PATCH 6.1 0738/1067] fbdev: nvidia: fix potential memory leak in nvidiafb_probe() Date: Tue, 21 Jul 2026 17:22:19 +0200 Message-ID: <20260721152441.091295776@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152424.521567757@linuxfoundation.org> References: <20260721152424.521567757@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Abdun Nihaal commit 85f5e38c162bdf9dbbe197275d416402712f3707 upstream. In nvidiafb_probe(), the memory allocated for modelist in nvidia_set_fbinfo() is not freed in the subsequent error paths. Fix that by calling fb_destroy_modelist(). Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2") Cc: stable@vger.kernel.org Signed-off-by: Abdun Nihaal Signed-off-by: Helge Deller Signed-off-by: Greg Kroah-Hartman --- drivers/video/fbdev/nvidia/nvidia.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/video/fbdev/nvidia/nvidia.c +++ b/drivers/video/fbdev/nvidia/nvidia.c @@ -1418,6 +1418,7 @@ static int nvidiafb_probe(struct pci_dev err_out_iounmap_fb: iounmap(info->screen_base); + fb_destroy_modelist(&info->modelist); err_out_free_base1: fb_destroy_modedb(info->monspecs.modedb); nvidia_delete_i2c_busses(par);