aboutsummaryrefslogtreecommitdiff
path: root/libctf
diff options
context:
space:
mode:
authorNick Alcock <nick.alcock@oracle.com>2025-06-26 15:47:25 +0100
committerNick Alcock <nick.alcock@oracle.com>2025-07-01 15:54:27 +0100
commitd54eea875046b46002d1c915b7a388e560140112 (patch)
tree93b85c7c9c153ec8befbb7eadcd2c85dc41f6023 /libctf
parent84b2be94e5b652d48993d3980b8a3378bd3c6cb5 (diff)
downloadbinutils-d54eea875046b46002d1c915b7a388e560140112.zip
binutils-d54eea875046b46002d1c915b7a388e560140112.tar.gz
binutils-d54eea875046b46002d1c915b7a388e560140112.tar.bz2
libctf: create: check the right root-visible flag when adding enumerands
The root-visible flag we're dealing with here is directly out of the dict, not a flag passed in to the API, so it does not have the values CTF_ADD_ROOT or CTF_ADD_NONROOT: instead it's simply zero for non-root-visible, nonzero otherwise. Fix the test. libctf/ * ctf-create.c (ctf_add_enumerator): Fix root-visibility test.
Diffstat (limited to 'libctf')
-rw-r--r--libctf/ctf-create.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libctf/ctf-create.c b/libctf/ctf-create.c
index ca984e8..5820830 100644
--- a/libctf/ctf-create.c
+++ b/libctf/ctf-create.c
@@ -1073,7 +1073,7 @@ ctf_add_enumerator (ctf_dict_t *fp, ctf_id_t enid, const char *name,
/* Enumeration constant names are only added, and only checked for duplicates,
if the enum they are part of is a root-visible type. */
- if (root == CTF_ADD_ROOT && ctf_dynhash_lookup (fp->ctf_names, name))
+ if (root && ctf_dynhash_lookup (fp->ctf_names, name))
{
if (fp->ctf_flags & LCTF_STRICT_NO_DUP_ENUMERATORS)
return (ctf_set_errno (ofp, ECTF_DUPLICATE));