From e9f1830489bd2cfce6bf02bde1ca91a3c0d7095e Mon Sep 17 00:00:00 2001 From: William King Date: Wed, 19 Oct 2016 18:32:38 -0700 Subject: [PATCH] FS-9650 initialize pointer to NULL to resolve warning --- src/switch_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/switch_core.c b/src/switch_core.c index e06b6b1f39..d3e6ef7af4 100644 --- a/src/switch_core.c +++ b/src/switch_core.c @@ -490,7 +490,7 @@ static void *SWITCH_THREAD_FUNC switch_core_service_thread(switch_thread_t *thre { switch_core_session_t *session = obj; switch_channel_t *channel; - switch_frame_t *read_frame; + switch_frame_t *read_frame = NULL; // switch_assert(thread != NULL); // switch_assert(session != NULL);