From: Tilghman Lesher Date: Mon, 31 Aug 2009 21:45:00 +0000 (+0000) Subject: Properly initialize the session to prevent a crash. X-Git-Tag: 11.0.0-beta1~4282 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=006b0b480bd3052dac58f9c4b3b21ef6917ccbe4;p=thirdparty%2Fasterisk.git Properly initialize the session to prevent a crash. (closes issue #15774) Reported by: lasko Patches: 20090831__issue15774.diff.txt uploaded by tilghman (license 14) Tested by: lasko git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@215069 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/manager.c b/main/manager.c index f833d4888d..a293d3aaaa 100644 --- a/main/manager.c +++ b/main/manager.c @@ -4726,7 +4726,7 @@ static int generic_http_callback(struct ast_tcptls_session_instance *ser, struct ast_variable *get_params, struct ast_variable *headers) { - struct mansession s = {.session = NULL, }; + struct mansession s = { .session = NULL, .tcptls_session = ser }; struct mansession_session *session = NULL; uint32_t ident = 0; int blastaway = 0;