From 2720dc3c056306b96d4f8af2571425551ee22877 Mon Sep 17 00:00:00 2001 From: Jon Parise Date: Fri, 4 Jan 2002 22:57:36 +0000 Subject: [PATCH] Nuke unused variable warning (end_arr). --- main/rfc1867.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/main/rfc1867.c b/main/rfc1867.c index e86ccb416a8..10dc4e8f840 100644 --- a/main/rfc1867.c +++ b/main/rfc1867.c @@ -582,7 +582,7 @@ static char *multipart_buffer_read_body(multipart_buffer *self TSRMLS_DC) SAPI_API SAPI_POST_HANDLER_FUNC(rfc1867_post_handler) { - char *boundary, *s=NULL, *start_arr=NULL, *end_arr=NULL, *array_index=NULL; + char *boundary, *s=NULL, *start_arr=NULL, *array_index=NULL; char *temp_filename=NULL, *lbuf=NULL, *abuf=NULL; int boundary_len=0, total_bytes=0, cancel_upload=0, is_arr_upload=0, array_len=0, max_file_size=0; zval *http_post_files=NULL; @@ -764,7 +764,6 @@ SAPI_API SAPI_POST_HANDLER_FUNC(rfc1867_post_handler) /* is_arr_upload is true when name of file upload field * ends in [.*] * start_arr is set to point to 1st [ - * end_arr points to last ] */ is_arr_upload = (start_arr = strchr(param,'[')) && (param[strlen(param)-1] == ']');