lkml.org 
[lkml]   [2017]   [Dec]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH AUTOSEL for 4.9 088/156] video: fbdev: au1200fb: Release some resources if a memory allocation fails
    Date
    From: Christophe JAILLET <christophe.jaillet@wanadoo.fr>

    [ Upstream commit 451f130602619a17c8883dd0b71b11624faffd51 ]

    We should go through the error handling code instead of returning -ENOMEM
    directly.

    Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
    Cc: Tejun Heo <tj@kernel.org>
    Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
    Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
    ---
    drivers/video/fbdev/au1200fb.c | 3 ++-
    1 file changed, 2 insertions(+), 1 deletion(-)

    diff --git a/drivers/video/fbdev/au1200fb.c b/drivers/video/fbdev/au1200fb.c
    index 6c2b2ca4a909..29d1639f5c5e 100644
    --- a/drivers/video/fbdev/au1200fb.c
    +++ b/drivers/video/fbdev/au1200fb.c
    @@ -1700,7 +1700,8 @@ static int au1200fb_drv_probe(struct platform_device *dev)
    if (!fbdev->fb_mem) {
    print_err("fail to allocate frambuffer (size: %dK))",
    fbdev->fb_len / 1024);
    - return -ENOMEM;
    + ret = -ENOMEM;
    + goto failed;
    }

    /*
    --
    2.11.0
    \
     
     \ /
      Last update: 2017-12-07 18:19    [W:4.214 / U:0.044 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site