diff options
author | Adhemerval Zanella Netto <adhemerval.zanella@linaro.org> | 2022-09-21 10:51:06 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2022-10-05 18:04:13 -0300 |
commit | cbf24edbb3123e3154ad2366912e0c1270ad3546 (patch) | |
tree | c39c9c95b36f84e0540b99adaae79f2ec5869cee /rt/tst-mqueue5.c | |
parent | 442e3a21724b07b3ae1c3c5eeba4a8e44a1a50a3 (diff) | |
download | glibc-cbf24edbb3123e3154ad2366912e0c1270ad3546.tar glibc-cbf24edbb3123e3154ad2366912e0c1270ad3546.tar.gz glibc-cbf24edbb3123e3154ad2366912e0c1270ad3546.tar.bz2 glibc-cbf24edbb3123e3154ad2366912e0c1270ad3546.zip |
rt: Initialize mq_send input on tst-mqueue{5,6}
GCC with -Os warns that the mq_send input may be used uninitialized.
Although for the tests the data content sent is not important, since
both tests checks only if mq_notify was properly set, the warning is
correct and data is indeed uninitialized.
Checked on x86_64-linux-gnu and i686-linux-gnu.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'rt/tst-mqueue5.c')
-rw-r--r-- | rt/tst-mqueue5.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rt/tst-mqueue5.c b/rt/tst-mqueue5.c index 70d97a36c2..2b19b6a031 100644 --- a/rt/tst-mqueue5.c +++ b/rt/tst-mqueue5.c @@ -58,7 +58,7 @@ rtmin_handler (int sig, siginfo_t *info, void *ctx) static int (mqsend) (mqd_t q, int line) { - char c; + char c = 0; if (mq_send (q, &c, 1, 1) != 0) { printf ("mq_send on line %d failed with: %m\n", line); |