} else {
efree(*decoded);
if (no_crlf) {
- http_error_ex(E_WARNING, HTTP_E_PARSE,
- "Invalid character (expected 0x0D 0x0A; got: 0x%x 0x%x)", *n_ptr, *(n_ptr + 1));
+ http_error_ex(E_WARNING, HTTP_E_PARSE, "Invalid character (expected 0x0D 0x0A; got: 0x%x 0x%x)", *n_ptr, *(n_ptr + 1));
} else {
char *error = estrndup(n_ptr, strcspn(n_ptr, "\r\n \0"));
http_error_ex(E_WARNING, HTTP_E_PARSE, "Invalid chunk size: '%s' at pos %d", error, n_ptr - encoded);
efree(error);
- efree(decoded);
}
-
+
return NULL;
}
} else {
break;
default:
- http_error_ex(E_WARNING, HTTP_E_CURL, "Unkown request body type: %d", body->type);
+ http_error_ex(E_WARNING, HTTP_E_CURL, "Unknown request body type: %d", body->type);
status = FAILURE;
goto http_request_end;
break;
{
static char *offset = NULL, *original = NULL;
http_request_body *body = (http_request_body *) s;
-
+
switch (body->type)
{
case HTTP_REQUEST_BODY_UPLOADFILE: