diff options
-rw-r--r-- | libctf/ChangeLog | 5 | ||||
-rw-r--r-- | libctf/ctf-create.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/libctf/ChangeLog b/libctf/ChangeLog index 61aebd1..acff0b1 100644 --- a/libctf/ChangeLog +++ b/libctf/ChangeLog @@ -1,5 +1,10 @@ 2020-07-22 Nick Alcock <nick.alcock@oracle.com> + * ctf-create.c (ctf_add_member_offset): Support names of "" + as if they were the null pointer. + +2020-07-22 Nick Alcock <nick.alcock@oracle.com> + * ctf-open.c (init_types): Remove typeless CTF_K_FORWARD special-casing. diff --git a/libctf/ctf-create.c b/libctf/ctf-create.c index bc0ad80..848e725 100644 --- a/libctf/ctf-create.c +++ b/libctf/ctf-create.c @@ -1371,6 +1371,9 @@ ctf_add_member_offset (ctf_file_t *fp, ctf_id_t souid, const char *name, if (dtd == NULL) return (ctf_set_errno (fp, ECTF_BADID)); + if (name != NULL && name[0] == '\0') + name = NULL; + kind = LCTF_INFO_KIND (fp, dtd->dtd_data.ctt_info); root = LCTF_INFO_ISROOT (fp, dtd->dtd_data.ctt_info); vlen = LCTF_INFO_VLEN (fp, dtd->dtd_data.ctt_info); |