diff options
author | Nick Alcock <nick.alcock@oracle.com> | 2020-06-02 20:39:15 +0100 |
---|---|---|
committer | Nick Alcock <nick.alcock@oracle.com> | 2020-07-22 17:57:29 +0100 |
commit | dd987f004301f6a737fcd431a9ae14d2fc2675bf (patch) | |
tree | 5c9ca1320b9bf271d15045e3fb5163ac26490b50 /libctf/ctf-create.c | |
parent | libctf, create: fix addition of anonymous struct/union members (diff) | |
download | binutils-gdb-dd987f004301f6a737fcd431a9ae14d2fc2675bf.tar.gz binutils-gdb-dd987f004301f6a737fcd431a9ae14d2fc2675bf.tar.bz2 binutils-gdb-dd987f004301f6a737fcd431a9ae14d2fc2675bf.zip |
libctf, create: empty dicts are dirty to start with
Without this, an empty dict that is written out immediately never gets
any content at all: even the header is left empty.
libctf/
* ctf-create.c (ctf_create): Mark dirty.
Diffstat (limited to 'libctf/ctf-create.c')
-rw-r--r-- | libctf/ctf-create.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libctf/ctf-create.c b/libctf/ctf-create.c index 5cbcfe0a702..1416d187fd9 100644 --- a/libctf/ctf-create.c +++ b/libctf/ctf-create.c @@ -126,6 +126,7 @@ ctf_create (int *errp) fp->ctf_dtoldid = 0; fp->ctf_snapshots = 1; fp->ctf_snapshot_lu = 0; + fp->ctf_flags |= LCTF_DIRTY; ctf_set_ctl_hashes (fp); ctf_setmodel (fp, CTF_MODEL_NATIVE); |