[PATCH] graphic_utils: Fix freeing uninitialzed pointer in fb_open()
Sascha Hauer
s.hauer at pengutronix.de
Thu Oct 19 03:13:48 PDT 2017
In fb_open() when fb_create_screen() fails then sc contains an
error pointer which is then freed in the failure path. Fix this.
Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
lib/gui/graphic_utils.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/lib/gui/graphic_utils.c b/lib/gui/graphic_utils.c
index 7d238e9ff9..0bed932213 100644
--- a/lib/gui/graphic_utils.c
+++ b/lib/gui/graphic_utils.c
@@ -285,15 +285,13 @@ struct screen *fb_open(const char * fbdev)
sc = fb_create_screen(info);
if (IS_ERR(sc)) {
ret = PTR_ERR(sc);
- goto failed_create;
+ goto failed_screeninfo;
}
sc->fd = fd;
return sc;
-failed_create:
- free(sc);
failed_screeninfo:
close(fd);
--
2.11.0
More information about the barebox
mailing list