Re: [PATCH] drm/bridge-connector: Fix double free in error handling paths

2024-08-05 Thread Robert Foss
On Thu, 11 Jul 2024 14:26:55 +0300, Cristian Ciocaltea wrote: > The recent switch to drmm allocation in drm_bridge_connector_init() may > cause double free on bridge_connector in some of the error handling > paths. > > Drop the explicit kfree() calls on bridge_connector. > > > [...] Applied, th

Re: [PATCH] drm/bridge-connector: Fix double free in error handling paths

2024-08-05 Thread Robert Foss
On Wed, Jul 31, 2024 at 10:03 PM Cristian Ciocaltea wrote: > > Hi Robert, > > On 7/18/24 3:02 PM, Robert Foss wrote: > > On Thu, 11 Jul 2024 14:26:55 +0300, Cristian Ciocaltea wrote: > >> The recent switch to drmm allocation in drm_bridge_connector_init() may > >> cause double free on bridge_conne

Re: [PATCH] drm/bridge-connector: Fix double free in error handling paths

2024-07-31 Thread Cristian Ciocaltea
Hi Robert, On 7/18/24 3:02 PM, Robert Foss wrote: > On Thu, 11 Jul 2024 14:26:55 +0300, Cristian Ciocaltea wrote: >> The recent switch to drmm allocation in drm_bridge_connector_init() may >> cause double free on bridge_connector in some of the error handling >> paths. >> >> Drop the explicit kfre

Re: [PATCH] drm/bridge-connector: Fix double free in error handling paths

2024-07-18 Thread Robert Foss
On Thu, 11 Jul 2024 14:26:55 +0300, Cristian Ciocaltea wrote: > The recent switch to drmm allocation in drm_bridge_connector_init() may > cause double free on bridge_connector in some of the error handling > paths. > > Drop the explicit kfree() calls on bridge_connector. > > > [...] Applied, th

Re: [PATCH] drm/bridge-connector: Fix double free in error handling paths

2024-07-17 Thread Dmitry Baryshkov
On Thu, Jul 11, 2024 at 02:26:55PM GMT, Cristian Ciocaltea wrote: > The recent switch to drmm allocation in drm_bridge_connector_init() may > cause double free on bridge_connector in some of the error handling > paths. > > Drop the explicit kfree() calls on bridge_connector. > > Fixes: c12907be57

[PATCH] drm/bridge-connector: Fix double free in error handling paths

2024-07-11 Thread Cristian Ciocaltea
The recent switch to drmm allocation in drm_bridge_connector_init() may cause double free on bridge_connector in some of the error handling paths. Drop the explicit kfree() calls on bridge_connector. Fixes: c12907be57b1 ("drm/bridge-connector: switch to using drmm allocations") Signed-off-by: Cri