Remove useless NULL check in python.c
authorTom Tromey <tromey@adacore.com>
Wed, 19 Feb 2020 14:50:21 +0000 (07:50 -0700)
committerTom Tromey <tromey@adacore.com>
Wed, 19 Feb 2020 14:50:21 +0000 (07:50 -0700)
commitd3c22fa82e2f9098ad5a0158a73f07db12426fff
treef0908d443aa596a4f73b0a7203dd885bf6748e4c
parenta7e12755d57879884c523cae1cf009efc9da933c
Remove useless NULL check in python.c

I noticed that do_start_initialization, in python.c, checks the result
of xmalloc.  However, xmalloc cannot fail, so this check is useless.
This patch also changes the code to use XNEWVEC.

gdb/ChangeLog
2020-02-19  Tom Tromey  <tromey@adacore.com>

* python/python.c (do_start_initialization): Use XNEWVEC.  Remove
NULL check.
gdb/ChangeLog
gdb/python/python.c