aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/postprocessor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon/postprocessor.c')
-rw-r--r--src/daemon/postprocessor.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/daemon/postprocessor.c b/src/daemon/postprocessor.c
index 3d25e4bd..60f09311 100644
--- a/src/daemon/postprocessor.c
+++ b/src/daemon/postprocessor.c
@@ -1,6 +1,6 @@
1/* 1/*
2 This file is part of libmicrohttpd 2 This file is part of libmicrohttpd
3 (C) 2007 Daniel Pittman and Christian Grothoff 3 (C) 2007, 2009 Daniel Pittman and Christian Grothoff
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public 6 modify it under the terms of the GNU Lesser General Public
@@ -403,8 +403,7 @@ post_process_urlencoded (struct MHD_PostProcessor *pp,
403 403
404 /* unescape */ 404 /* unescape */
405 xbuf[xoff] = '\0'; /* 0-terminate in preparation */ 405 xbuf[xoff] = '\0'; /* 0-terminate in preparation */
406 MHD_http_unescape (xbuf); 406 xoff = MHD_http_unescape (xbuf);
407
408 /* finally: call application! */ 407 /* finally: call application! */
409 if (MHD_NO == pp->ikvi (pp->cls, MHD_POSTDATA_KIND, (const char *) &pp[1], /* key */ 408 if (MHD_NO == pp->ikvi (pp->cls, MHD_POSTDATA_KIND, (const char *) &pp[1], /* key */
410 NULL, NULL, NULL, xbuf, pp->value_offset, 409 NULL, NULL, NULL, xbuf, pp->value_offset,