Re: [PATCH v2] drm/amdgpu: fix multiple memory leaks

From: Sven Van Asbroeck
Date: Wed Sep 18 2019 - 15:45:46 EST


On Wed, Sep 18, 2019 at 3:09 PM Navid Emamdoost
<navid.emamdoost@xxxxxxxxx> wrote:
>
> i2s_pdata = kcalloc(3, sizeof(struct i2s_platform_data), GFP_KERNEL);
> if (i2s_pdata == NULL) {
> - kfree(adev->acp.acp_res);
> - kfree(adev->acp.acp_cell);
> - return -ENOMEM;
> + ret = -ENOMEM;
> + goto out3;
> }

I don't see a corresponding kfree() for i2s_pdata in acp_hw_fini().
Could this be a memory leak?