]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
expo: Correct some swallowed errors in scene
authorSimon Glass <sjg@chromium.org>
Mon, 2 Oct 2023 01:13:25 +0000 (19:13 -0600)
committerTom Rini <trini@konsulko.com>
Wed, 11 Oct 2023 19:43:55 +0000 (15:43 -0400)
Return the reported error, rather than assuming it is -ENOMEM

Signed-off-by: Simon Glass <sjg@chromium.org>
boot/scene.c

index 08ed85e9188cdd494ea531e40950eff4d72422db..9c4466c1a47a21189013173965271273a1a2fb60 100644 (file)
@@ -137,7 +137,7 @@ int scene_img(struct scene *scn, const char *name, uint id, char *data,
                            sizeof(struct scene_obj_img),
                            (struct scene_obj **)&img);
        if (ret < 0)
-               return log_msg_ret("obj", -ENOMEM);
+               return log_msg_ret("obj", ret);
 
        img->data = data;
 
@@ -157,7 +157,7 @@ int scene_txt(struct scene *scn, const char *name, uint id, uint str_id,
                            sizeof(struct scene_obj_txt),
                            (struct scene_obj **)&txt);
        if (ret < 0)
-               return log_msg_ret("obj", -ENOMEM);
+               return log_msg_ret("obj", ret);
 
        txt->str_id = str_id;
 
@@ -183,7 +183,7 @@ int scene_txt_str(struct scene *scn, const char *name, uint id, uint str_id,
                            sizeof(struct scene_obj_txt),
                            (struct scene_obj **)&txt);
        if (ret < 0)
-               return log_msg_ret("obj", -ENOMEM);
+               return log_msg_ret("obj", ret);
 
        txt->str_id = str_id;