diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2019-05-16 20:53:42 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2019-05-18 06:42:03 -0400 |
commit | 1f0e3238352a497a59a36e0b8a5b4723c634b2e1 (patch) | |
tree | d49a598905cf10e28ff7d21a627e2f90a6e79ada /src/TMstate.c | |
parent | fb78a7c881adbe46f1f8c6e8e429bc8963c9b3e8 (diff) |
fix most clang --analyze warnings about null-pointers
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
Diffstat (limited to 'src/TMstate.c')
-rw-r--r-- | src/TMstate.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/TMstate.c b/src/TMstate.c index 70ee5dd..0856909 100644 --- a/src/TMstate.c +++ b/src/TMstate.c @@ -1765,7 +1765,8 @@ static XtTranslations UnmergeTranslations( else first = NULL; - if (xlations->composers[1]) { + if (xlations->composers[0] + && xlations->composers[1]) { second = UnmergeTranslations(widget, xlations->composers[1], unmergeXlations, (TMShortCard)(currIndex + |