diff options
author | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2020-11-11 22:53:50 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@sourceware.org> | 2020-11-12 13:29:59 +0530 |
commit | ee9946ce3c176092fb5fbabc7406a39479565a1b (patch) | |
tree | 9c6f76b397704070142b97bf14a3bea516c728db | |
parent | 85741f7eba716db09f586bc94aaa9a6b5dc2347f (diff) | |
download | glibc-ee9946ce3c176092fb5fbabc7406a39479565a1b.zip glibc-ee9946ce3c176092fb5fbabc7406a39479565a1b.tar.gz glibc-ee9946ce3c176092fb5fbabc7406a39479565a1b.tar.bz2 |
tests: Remove NULL check for an array
The NULL check for an array on stack is pointless since it will always
be false, so drop it.
-rw-r--r-- | stdio-common/scanf14.c | 2 | ||||
-rw-r--r-- | stdio-common/scanf15.c | 2 | ||||
-rw-r--r-- | stdio-common/scanf16.c | 2 | ||||
-rw-r--r-- | stdio-common/scanf17.c | 2 |
4 files changed, 0 insertions, 8 deletions
diff --git a/stdio-common/scanf14.c b/stdio-common/scanf14.c index f92838e..4c2feea 100644 --- a/stdio-common/scanf14.c +++ b/stdio-common/scanf14.c @@ -86,8 +86,6 @@ main (void) char fname[strlen (tmpdir) + sizeof "/tst-scanf14.XXXXXX"]; sprintf (fname, "%s/tst-scanf14.XXXXXX", tmpdir); - if (fname == NULL) - FAIL (); /* Create a temporary file. */ int fd = mkstemp (fname); diff --git a/stdio-common/scanf15.c b/stdio-common/scanf15.c index a937815..6e4980c 100644 --- a/stdio-common/scanf15.c +++ b/stdio-common/scanf15.c @@ -69,8 +69,6 @@ main (void) char fname[strlen (tmpdir) + sizeof "/tst-scanf15.XXXXXX"]; sprintf (fname, "%s/tst-scanf15.XXXXXX", tmpdir); - if (fname == NULL) - FAIL (); /* Create a temporary file. */ int fd = mkstemp (fname); diff --git a/stdio-common/scanf16.c b/stdio-common/scanf16.c index b4ba3e6..073a77e 100644 --- a/stdio-common/scanf16.c +++ b/stdio-common/scanf16.c @@ -117,8 +117,6 @@ main (void) char fname[strlen (tmpdir) + sizeof "/tst-scanf16.XXXXXX"]; sprintf (fname, "%s/tst-scanf16.XXXXXX", tmpdir); - if (fname == NULL) - FAIL (); /* Create a temporary file. */ int fd = mkstemp (fname); diff --git a/stdio-common/scanf17.c b/stdio-common/scanf17.c index 428f22e..3224573 100644 --- a/stdio-common/scanf17.c +++ b/stdio-common/scanf17.c @@ -100,8 +100,6 @@ main (void) char fname[strlen (tmpdir) + sizeof "/tst-scanf17.XXXXXX"]; sprintf (fname, "%s/tst-scanf17.XXXXXX", tmpdir); - if (fname == NULL) - FAIL (); /* Create a temporary file. */ int fd = mkstemp (fname); |