RE: [PATCH] DSPBRIDGE Memory leak when dynbase is loaded

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

> -----Original Message-----
> From: linux-omap-owner@xxxxxxxxxxxxxxx [mailto:linux-omap-
> owner@xxxxxxxxxxxxxxx] On Behalf Of Ramirez Luna, Omar
> Sent: Monday, January 19, 2009 11:00 AM
> To: Pandita, Vikram; Hiroshi DOYU
> Cc: linux-omap@xxxxxxxxxxxxxxx; Kanigeri, Hari; Gupta, Ramesh
> Subject: [PATCH] DSPBRIDGE Memory leak when dynbase is loaded
> 
> From: Omar Ramirez <x0084701@mmlinux.(none)>
> Date: Wed, 14 Jan 2009 15:47:54 -0600
> Subject: [PATCH] DSPBRIDGE Memory leak when dynbase is loaded
> 
> This patch fixes a memory leak that happens whenever
> a dynamic base image is loaded and then the driver is
> uninstalled.
> 
> Signed-off-by: Omar Ramirez Luna <x0084701@xxxxxx>
> ---
>  drivers/dsp/bridge/dynload/cload.c |    2 ++
>  1 files changed, 2 insertions(+), 0 deletions(-)
> 
> diff --git a/drivers/dsp/bridge/dynload/cload.c
> b/drivers/dsp/bridge/dynload/cload.c
> index 271ab81..a6d7ae6 100644
> --- a/drivers/dsp/bridge/dynload/cload.c
> +++ b/drivers/dsp/bridge/dynload/cload.c
> @@ -1806,6 +1806,8 @@ loop_end:
>  		if (syms->Find_Matching_Symbol
>  			(syms, LOADER_DLLVIEW_ROOT) == NULL)
>  			syms->Deallocate(syms, root);
> +		if (root != NULL)
> +			syms->Deallocate(syms, root);

I would suggest a simpler check like this:

		if (!syms->Find_Matching_Symbol(syms, LOADER_DLLVIEW_ROOT) ||
									root)
			syms->Deallocate(syms, root);

Regards,
Sergio

>  	}
>  #endif
>  func_end:
> --
> 1.5.4.3
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@xxxxxxxxxxxxxxx
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Arm (vger)]     [ARM Kernel]     [ARM MSM]     [Linux Tegra]     [Linux WPAN Networking]     [Linux Wireless Networking]     [Maemo Users]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite Trails]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux