Hi, there's a small bug in 3.0.3, which is only triggered when the collection
of POST data is interfered with, and which is easy to fix.
Symptom:
wrong # args: should be "Httpd_GetPostDataAsync sock varName blockSize cmd"
Cause:
lib/httpd.tcl line 1307 reads:
Httpd_GetPostDataAsync $sock "" HttpdCloseFinal
Should probably read:
Httpd_GetPostDataAsync $sock "" 10240 HttpdCloseFinal
The actual value probably doesn't matter much, as the data's discarded as soon
as it's read. I haven't traced through to see what's consuming blockSize's
value, as the bug was only triggered when I failed to clear data(count), as I
ought to have done.
Colin.