diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2017-08-02 12:44:54 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 2017-08-02 12:44:54 +0000 |
commit | 94bade3ff01781ea1a097012b8f26c1320dfbcc2 (patch) | |
tree | a4efefb8efed1ebc0037571f0b1aa8bd5f3ef6b3 /libbacktrace | |
parent | 446e05fd6ae529d690c0e088106cc197ec4bdb7a (diff) | |
download | gcc-94bade3ff01781ea1a097012b8f26c1320dfbcc2.tar.gz |
* xcoff.c (xcoff_process_linenos): Initialize incl to NULL.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@250824 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libbacktrace')
-rw-r--r-- | libbacktrace/ChangeLog | 4 | ||||
-rw-r--r-- | libbacktrace/xcoff.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/libbacktrace/ChangeLog b/libbacktrace/ChangeLog index 313a4c61855..ce7b350bffc 100644 --- a/libbacktrace/ChangeLog +++ b/libbacktrace/ChangeLog @@ -1,3 +1,7 @@ +2017-08-02 David Edelsohn <dje.gcc@gmail.com> + + * xcoff.c (xcoff_process_linenos): Initialize incl to NULL. + 2017-07-28 Tony Reix <tony.reix@atos.net> * xcoff.c: Don't leak a file descriptor if an archive is malformed. diff --git a/libbacktrace/xcoff.c b/libbacktrace/xcoff.c index 2faa9fdfa05..b3d7e24256b 100644 --- a/libbacktrace/xcoff.c +++ b/libbacktrace/xcoff.c @@ -774,7 +774,7 @@ xcoff_process_linenos (struct backtrace_state *state, uintptr_t base_address, const b_xcoff_lineno *lineno; const unsigned char *lineptr; const char *function; - struct xcoff_incl *incl; + struct xcoff_incl *incl = NULL; uintptr_t lnnoptr; uintptr_t pc; uint32_t lnno; |