Fixed in SVN 23381. -Christian On 08/23/2012 01:41 AM, [email protected] wrote:
Hey Christian,Thanks for fixing that! One other little thing about largepost.c: In answer_to_connection for the if if (0 != *upload_data_size) {...} else {...}, the file pointer in con_info is still open when it goes to the else statement. In the else statement, before the call to send_page, should be something like: if (con_info->fp) fclose (con_info->fp) // Now it is safe to open and inspect the file before calling send_page with a response All the best, ~Mike
