mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Add g__object_unref to clean up gmime message object
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@114253 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -245,12 +245,14 @@ static struct ast_str *http_post_callback(struct ast_tcptls_session_instance *se
|
|||||||
|
|
||||||
if (!(message_count = process_message(message, post_dir->str))) {
|
if (!(message_count = process_message(message, post_dir->str))) {
|
||||||
ast_log(LOG_ERROR, "Invalid MIME data, found no parts!\n");
|
ast_log(LOG_ERROR, "Invalid MIME data, found no parts!\n");
|
||||||
|
g_object_unref(message);
|
||||||
return ast_http_error((*status = 400),
|
return ast_http_error((*status = 400),
|
||||||
(*title = ast_strdup("Bad Request")),
|
(*title = ast_strdup("Bad Request")),
|
||||||
NULL, "The was an error parsing the request.");
|
NULL, "The was an error parsing the request.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
g_object_unref(message);
|
||||||
|
|
||||||
return ast_http_error((*status = 200),
|
return ast_http_error((*status = 200),
|
||||||
(*title = ast_strdup("OK")),
|
(*title = ast_strdup("OK")),
|
||||||
NULL, "File successfully uploaded.");
|
NULL, "File successfully uploaded.");
|
||||||
|
Reference in New Issue
Block a user