libmsc/gsm_09_11.c: avoid double zero-initialization of gsup_msg

Change-Id: Ib991b01534499401e7a0c3de49ceba770fdd9b48
This commit is contained in:
Vadim Yanitskiy 2019-06-17 21:57:08 +07:00
parent f177590488
commit 944d6a2acb
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ static uint32_t new_callref = 0x20000001;
static void ncss_session_timeout_handler(void *_trans)
{
struct gsm_trans *trans = (struct gsm_trans *) _trans;
struct osmo_gsup_message gsup_msg = { 0 };
struct osmo_gsup_message gsup_msg;
/* The timeout might be disabled from the VTY */
if (trans->net->ncss_guard_timeout == 0)