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.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/daemon/postprocessor.c b/src/daemon/postprocessor.c
index 7147c114..5b8f01a2 100644
--- a/src/daemon/postprocessor.c
+++ b/src/daemon/postprocessor.c
@@ -281,6 +281,8 @@ MHD_create_post_processor (struct MHD_Connection *connection,
281 (blen * 2 + 2 > buffer_size) ) 281 (blen * 2 + 2 > buffer_size) )
282 return NULL; /* (will be) out of memory or invalid boundary */ 282 return NULL; /* (will be) out of memory or invalid boundary */
283 } 283 }
284 else
285 blen = 0;
284 ret = malloc (sizeof (struct MHD_PostProcessor) + buffer_size + 1); 286 ret = malloc (sizeof (struct MHD_PostProcessor) + buffer_size + 1);
285 if (ret == NULL) 287 if (ret == NULL)
286 return NULL; 288 return NULL;