linux: Fix mq_timereceive check for 32 bit fallback code (BZ 29304)
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Thu, 30 Jun 2022 12:08:31 +0000 (09:08 -0300)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Thu, 30 Jun 2022 12:12:59 +0000 (09:12 -0300)
On  success,  mq_receive() and mq_timedreceive() return the number of
bytes in the received message, so it requires to check if the value
is larger than 0.

Checked on i686-linux-gnu.

sysdeps/unix/sysv/linux/mq_timedreceive.c

index 834cd7a..5bf1e0a 100644 (file)
@@ -41,7 +41,7 @@ ___mq_timedreceive_time64 (mqd_t mqdes, char *__restrict msg_ptr, size_t msg_len
     {
       int r = SYSCALL_CANCEL (mq_timedreceive_time64, mqdes, msg_ptr, msg_len,
                              msg_prio, abs_timeout);
-      if (r == 0 || errno != ENOSYS)
+      if (r >= 0 || errno != ENOSYS)
        return r;
       __set_errno (EOVERFLOW);
       return -1;