]> granicus.if.org Git - php/commitdiff
The ISAPI module was incompatible with the CGI fix, which ruined POST's
authorZeev Suraski <zeev@php.net>
Wed, 5 Apr 2000 18:06:13 +0000 (18:06 +0000)
committerZeev Suraski <zeev@php.net>
Wed, 5 Apr 2000 18:06:13 +0000 (18:06 +0000)
sapi/isapi/php4isapi.c

index 2fa11239d62c17701273610483e78ff79f41e177..3597a18e2e4fcee758cf791e820b14e84c714adc 100644 (file)
@@ -257,7 +257,7 @@ static int sapi_isapi_read_post(char *buffer, uint count_bytes SLS_DC)
        DWORD read_from_input=0;
        DWORD total_read=0;
 
-       if (SG(read_post_bytes) < lpECB->cbAvailable) {
+       if ((DWORD) SG(read_post_bytes) < lpECB->cbAvailable) {
                read_from_buf = MIN(lpECB->cbAvailable-SG(read_post_bytes), count_bytes);
                memcpy(buffer, lpECB->lpbData+SG(read_post_bytes), read_from_buf);
                total_read += read_from_buf;
@@ -276,7 +276,6 @@ static int sapi_isapi_read_post(char *buffer, uint count_bytes SLS_DC)
                }
                total_read += cbRead;
        }
-       SG(read_post_bytes) += total_read;
        return total_read;
 }