diff options
author | Nick Alcock <nick.alcock@oracle.com> | 2021-10-25 11:17:02 +0100 |
---|---|---|
committer | Nick Alcock <nick.alcock@oracle.com> | 2021-10-25 11:17:04 +0100 |
commit | a0cc569d599f92c3a9168fcd23a0b18f7ff42f1d (patch) | |
tree | cc5607eb8257ee863fb87845c4286027f420e98b /libctf/ChangeLog | |
parent | 10909ea819417549886daf2fea983cc42cd6c734 (diff) | |
download | gdb-a0cc569d599f92c3a9168fcd23a0b18f7ff42f1d.zip gdb-a0cc569d599f92c3a9168fcd23a0b18f7ff42f1d.tar.gz gdb-a0cc569d599f92c3a9168fcd23a0b18f7ff42f1d.tar.bz2 |
libctf: dump: do not stop dumping types on error
If dumping of a single type fails, we obviously can't dump it; but just
as obviously this doesn't make the other types in the types section
invalid or undumpable. So we should not propagate errors seen when
type-dumping, but rather ignore them and carry on, so we dump as many
types as we can (leaving out the ones we can't grok).
libctf/ChangeLog
2021-10-25 Nick Alcock <nick.alcock@oracle.com>
* ctf-dump.c (ctf_dump_type): Do not abort on error.
Diffstat (limited to 'libctf/ChangeLog')
-rw-r--r-- | libctf/ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libctf/ChangeLog b/libctf/ChangeLog index 5907e2f..879e128 100644 --- a/libctf/ChangeLog +++ b/libctf/ChangeLog @@ -1,3 +1,7 @@ +2021-10-25 Nick Alcock <nick.alcock@oracle.com> + + * ctf-dump.c (ctf_dump_type): Do not abort on error. + 2021-09-27 Nick Alcock <nick.alcock@oracle.com> * ctf-lookup.c (ctf_lookup_by_name_internal): Fix pptrtab bounds. |