This commit is contained in:
Christian Grothoff
2013-03-07 09:13:40 +00:00
parent 26ed57fcf9
commit aa8465c711
3 changed files with 11 additions and 2 deletions
+3
View File
@@ -1,3 +1,6 @@
Thu Mar 7 10:13:08 CET 2013
Fix bug in postprocessor URL parser (#2818). -jgresula
Mon Mar 4 13:45:35 CET 2013
Fix dropping of SSL connections if uptime is less than
MHD_OPTION_CONNECTION_TIMEOUT due to integer underflow (#2802). -greed
+7 -1
View File
@@ -65,7 +65,8 @@ check_PROGRAMS = \
if HAVE_POSTPROCESSOR
check_PROGRAMS += \
postprocessor_test \
postprocessor_large_test
postprocessor_large_test \
test_postprocessor_amp
endif
TESTS = $(check_PROGRAMS)
@@ -80,6 +81,11 @@ postprocessor_test_SOURCES = \
postprocessor_test_LDADD = \
$(top_builddir)/src/daemon/libmicrohttpd.la
test_postprocessor_amp_SOURCES = \
test_postprocessor_amp.c
test_postprocessor_amp_LDADD = \
$(top_builddir)/src/daemon/libmicrohttpd.la
postprocessor_large_test_SOURCES = \
postprocessor_large_test.c
postprocessor_large_test_LDADD = \
+1 -1
View File
@@ -435,7 +435,7 @@ post_process_urlencoded (struct MHD_PostProcessor *pp,
{
pp->state = PP_ExpectNewLine;
}
else
else if (post_data[poff] == '&')
{
poff++; /* skip '&' */
pp->state = PP_Init;