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
This commit is contained in:
Tilghman Lesher 2009-08-31 21:45:00 +00:00
parent 9b12df5731
commit 006b0b480b
1 changed files with 1 additions and 1 deletions

View File

@ -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;