libctf: Return CTF_ERR in ctf_type_resolve_unsliced PR 30836
authorTorbjörn SVENSSON <torbjorn.svensson@foss.st.com>
Tue, 17 Oct 2023 18:36:50 +0000 (20:36 +0200)
committerTorbjörn SVENSSON <torbjorn.svensson@foss.st.com>
Wed, 18 Oct 2023 07:39:59 +0000 (09:39 +0200)
In commit 998a4f589d68503f79695f180fdf1742eeb0a39d, all but one return
statement was updated to return the error proper value. This commit
rectifies that missed return statement.

libctf/
ctf-types.c (ctf_type_resolve_unsliced): Return CTF_ERR on error.

Signed-off-by: Torbjörn SVENSSON <torbjorn.svensson@foss.st.com>
libctf/ctf-types.c

index 694d6ea79e4f7bc5e2702154c82cc37093d65e97..4d3c01dbbb4a1769f0dfd87d75fde24ded12f746 100644 (file)
@@ -602,7 +602,7 @@ ctf_type_resolve_unsliced (ctf_dict_t *fp, ctf_id_t type)
   const ctf_type_t *tp;
 
   if ((type = ctf_type_resolve (fp, type)) == CTF_ERR)
-    return -1;
+    return CTF_ERR;
 
   if ((tp = ctf_lookup_by_id (&fp, type)) == NULL)
     return CTF_ERR;            /* errno is set for us.  */