diff options
author | Christian Göttsche <cgzones@googlemail.com> | 2024-01-04 17:46:48 +0100 |
---|---|---|
committer | Christian Göttsche <cgzones@googlemail.com> | 2024-01-04 17:46:48 +0100 |
commit | 4fbed4be20377e5b1a6e71f572eb28ed049ed3fe (patch) | |
tree | 31b6fbea816ce6d749075243df08b0ac4c67520c /tests | |
parent | 921386390effa5484fd11c7d36c1dfa84fd608a6 (diff) | |
download | pam-4fbed4be20377e5b1a6e71f572eb28ed049ed3fe.tar.gz pam-4fbed4be20377e5b1a6e71f572eb28ed049ed3fe.tar.bz2 pam-4fbed4be20377e5b1a6e71f572eb28ed049ed3fe.zip |
tests: avoid NULL dereference in error branch
Reported by cppcheck.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/tst-pam_getenvlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tst-pam_getenvlist.c b/tests/tst-pam_getenvlist.c index 62aea061..d6abac91 100644 --- a/tests/tst-pam_getenvlist.c +++ b/tests/tst-pam_getenvlist.c @@ -78,7 +78,7 @@ main (void) { fprintf (stderr, "pam_getenvlist (pamh) does not return pointer to NULL\n"); - temp = *ptr; + temp = ptr ? *ptr : NULL; var = 0; while (temp) { |