r21277: Fix an off by one error in the signal handler for aio: We can actually receive
authorVolker Lendecke <vlendec@samba.org>
Sun, 11 Feb 2007 13:42:48 +0000 (13:42 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:17:53 +0000 (12:17 -0500)
AIO_PENDING_SIZE signals, not one less.

Jeremy I'm not merging this to 3_0_25, I want you to look at it first!

Volker
(This used to be commit 8fd0ec58360a349826508fc361a943650fdd6694)

source3/smbd/aio.c

index fd886178f606fb2c97d44395307105e2b25767ed..942534847468ca1d4df6663975196045e7c81200 100644 (file)
@@ -158,7 +158,7 @@ static uint16 aio_pending_array[AIO_PENDING_SIZE];
 
 static void signal_handler(int sig, siginfo_t *info, void *unused)
 {
-       if (signals_received < AIO_PENDING_SIZE - 1) {
+       if (signals_received < AIO_PENDING_SIZE) {
                aio_pending_array[signals_received] = info->si_value.sival_int;
                signals_received++;
        } /* Else signal is lost. */