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 3825938236C; Thu, 20 Aug 2026 15:25: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=1787239546; cv=none; b=rsU8xmeG+tf2h8MryGEcicTFxxx3YkS6ou61LkGOv07enFl1R+rgrOHhR3jYh3PoN/MCJNkl2Z0L8IvvDEsQjxle1KWLEn6ABL4fxkemNLs1n7CSvz20NoWmoXUeic130D801dlBB+a5dD6tpWNgZE/S82Gy2MkvHI34A52eQW8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1787239546; c=relaxed/simple; bh=hT5U+aCGggU+SnwPKaNCmCSXIx3C1Kc//ccR9NxPmFQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=CjeryDZwG0VF3lwRBQp7vWoZpQhAqjNqYXfWQ6fwaarpr1q3MJWN6OkYN+s+8OPGstEiitMhVIoWewUP/ecCi4mwXGaYTXJ1sr/dxZ3HQdMMeAsSZfYHFzwCU6vuHQBDFvjt/9nKvARqR+bmOdsaRA3ZrbSTZnDrW7g7mVY5MCw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Jp3fxuWY; 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="Jp3fxuWY" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 75A8B1F000E9; Thu, 20 Aug 2026 15:25:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1787239545; bh=soOWY5c28ON6gJTo6DUtT6s0OfY13wtkAoDdkRTCOpg=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=Jp3fxuWY7Q839vyOLhp2dogodwlzNQ3RFpcouPq/JXqhxHJifDLfuhwynXZ6VvrxH xDdtQwCebkZYXHpGkzDCnIIPRcgJYG0qkAPSj/5Ec9xU0uKuwl+vQ8vH5qo/XYPHik vIZZaP7Tb52pDYjVzgYpLDSJsFwYOZvB+83838vM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, sashiko-bot@kernel.org, Dmitry Torokhov Subject: [PATCH 6.12 059/220] Input: sur40 - fix V4L error path cleanup Date: Thu, 20 Aug 2026 16:54:09 +0200 Message-ID: <20260820145225.267524191@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260820145223.480031205@linuxfoundation.org> References: <20260820145223.480031205@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Dmitry Torokhov commit 062dc4693e2c10d77de06f61e6f3faf37c0a8383 upstream. In sur40_probe(), if video_register_device() fails, the error path jumps to err_unreg_video. This incorrectly attempts to unregister a video device that was never successfully registered, and fails to free the V4L2 control handler (v4l2_ctrl_handler_free) that was initialized immediately prior. Fix this by introducing an err_free_ctrl label to properly free the V4L2 control handler and bypass video_unregister_device() when video device registration fails. Reported-by: sashiko-bot@kernel.org Cc: stable@vger.kernel.org Assisted-by: Antigravity:gemini-3.5-flash Link: https://patch.msgid.link/20260616051235.1549517-2-dmitry.torokhov@gmail.com Signed-off-by: Dmitry Torokhov Signed-off-by: Greg Kroah-Hartman --- drivers/input/touchscreen/sur40.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/drivers/input/touchscreen/sur40.c +++ b/drivers/input/touchscreen/sur40.c @@ -787,7 +787,7 @@ static int sur40_probe(struct usb_interf if (error) { dev_err(&interface->dev, "Unable to register video subdevice."); - goto err_unreg_video; + goto err_free_ctrl; } /* register the polled input device */ @@ -806,6 +806,8 @@ static int sur40_probe(struct usb_interf err_unreg_video: video_unregister_device(&sur40->vdev); +err_free_ctrl: + v4l2_ctrl_handler_free(&sur40->hdl); err_unreg_v4l2: v4l2_device_unregister(&sur40->v4l2); err_free_buffer: