summaryrefslogtreecommitdiff
path: root/xs_httpd.h
diff options
context:
space:
mode:
Diffstat (limited to 'xs_httpd.h')
-rw-r--r--xs_httpd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/xs_httpd.h b/xs_httpd.h
index 454d786..4dad72a 100644
--- a/xs_httpd.h
+++ b/xs_httpd.h
@@ -131,13 +131,13 @@ d_char *_xs_multipart_form_data(char *payload, int p_size, char *header)
131 } 131 }
132 132
133 /* find the start of the part content */ 133 /* find the start of the part content */
134 if ((p = xs_memmem(p, p_size - offset, "\r\n\r\n", 4)) == NULL) 134 if ((p = xs_memmem(p, p_size - (p - payload), "\r\n\r\n", 4)) == NULL)
135 break; 135 break;
136 136
137 p += 4; 137 p += 4;
138 138
139 /* find the next boundary */ 139 /* find the next boundary */
140 if ((q = xs_memmem(p, p_size - offset, boundary, bsz)) == NULL) 140 if ((q = xs_memmem(p, p_size - (p - payload), boundary, bsz)) == NULL)
141 break; 141 break;
142 142
143 po = p - payload; 143 po = p - payload;