Browse Source

We might want to consider moving this to a long throughout the sapi code,

but for now switch to a signed int.
migration/RELEASE_1_0_0
Rasmus Lerdorf 20 years ago
parent
commit
9b985490f6
  1. 2
      sapi/apache/mod_php5.c

2
sapi/apache/mod_php5.c

@ -123,7 +123,7 @@ static void sapi_apache_flush(void *server_context)
*/ */
static int sapi_apache_read_post(char *buffer, uint count_bytes TSRMLS_DC) static int sapi_apache_read_post(char *buffer, uint count_bytes TSRMLS_DC)
{ {
uint total_read_bytes=0, read_bytes;
int total_read_bytes=0, read_bytes;
request_rec *r = (request_rec *) SG(server_context); request_rec *r = (request_rec *) SG(server_context);
void (*handler)(int); void (*handler)(int);

Loading…
Cancel
Save