diff options
author | Tom Tromey <tromey@adacore.com> | 2019-12-10 11:19:23 -0700 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2019-12-12 12:36:57 -0700 |
commit | d61df89700bcf1633ca9db0ea403c2108c3cac3e (patch) | |
tree | e9a230f46ba6995eb090ae026af1c6e46cf8ab97 /gdb/xml-support.c | |
parent | db3ad2f031d4da70db35977abbcede0399d81d6b (diff) | |
download | gdb-d61df89700bcf1633ca9db0ea403c2108c3cac3e.zip gdb-d61df89700bcf1633ca9db0ea403c2108c3cac3e.tar.gz gdb-d61df89700bcf1633ca9db0ea403c2108c3cac3e.tar.bz2 |
Remove some calls to malloc_failure
I noticed a couple of spots that call malloc_failure, but that don't
need to.
* In xml-support.c, "concat" uses xmalloc, so cannot return NULL.
* In utils.c, "buildargv" also uses xmalloc, so can only return NULL
if the argument is empty.
Tested by the buildbot.
gdb/ChangeLog
2019-12-12 Tom Tromey <tromey@adacore.com>
* xml-support.c (xml_fetch_content_from_file): Don't call
malloc_failure.
* utils.h (class gdb_argv): Remove malloc_failure comment.
* utils.c (gdb_argv::reset): Don't call malloc_failure.
Change-Id: I59483620deb6609ccf2f024d94a29113bb62d1a9
Diffstat (limited to 'gdb/xml-support.c')
-rw-r--r-- | gdb/xml-support.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/xml-support.c b/gdb/xml-support.c index 915be76..f5a1427 100644 --- a/gdb/xml-support.c +++ b/gdb/xml-support.c @@ -977,8 +977,6 @@ xml_fetch_content_from_file (const char *filename, void *baton) { char *fullname = concat (dirname, "/", filename, (char *) NULL); - if (fullname == NULL) - malloc_failure (0); file = gdb_fopen_cloexec (fullname, FOPEN_RT); xfree (fullname); } |