[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250406134843.67702-1-nueralspacetech@gmail.com>
Date: Sun, 6 Apr 2025 19:18:43 +0530
From: Sunny Patel <nueralspacetech@...il.com>
To: Wolfram Sang <wsa+renesas@...g-engineering.com>
Cc: linux-i2c@...r.kernel.org,
linux-kernel@...r.kernel.org,
Sunny Patel <nueralspacetech@...il.com>
Subject: [PATCH] i2c: Fix reference leak in of_i2c_register_devices
Fix a potential reference leak in of_i2c_register_devices where the
reference to the node is not released if device registration fails.
This ensures proper reference management and avoids memory leaks.
Signed-off-by: Sunny Patel <nueralspacetech@...il.com>
---
drivers/i2c/i2c-core-of.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/i2c/i2c-core-of.c b/drivers/i2c/i2c-core-of.c
index 02feee6c9ba9..7c50905de8f1 100644
--- a/drivers/i2c/i2c-core-of.c
+++ b/drivers/i2c/i2c-core-of.c
@@ -107,6 +107,7 @@ void of_i2c_register_devices(struct i2c_adapter *adap)
"Failed to create I2C device for %pOF\n",
node);
of_node_clear_flag(node, OF_POPULATED);
+ of_node_put(node);
}
}
--
2.43.0
Powered by blists - more mailing lists