From fbbd62047c3d315b906970d890cc1bd99103aebf Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Mon, 24 Aug 2009 20:16:23 +0000 Subject: [PATCH] unint memory may be confused for an ip change git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@14623 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/switch_nat.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/switch_nat.c b/src/switch_nat.c index d46c4c7f4a..505e9963fe 100644 --- a/src/switch_nat.c +++ b/src/switch_nat.c @@ -245,7 +245,7 @@ switch_status_t init_nat_monitor(switch_memory_pool_t *pool) static void *SWITCH_THREAD_FUNC switch_nat_multicast_runtime(switch_thread_t *thread, void *obj) { char *buf = NULL; - char newip[16]; + char newip[16] = ""; char *pos; switch_event_t *event = NULL; @@ -283,6 +283,7 @@ static void *SWITCH_THREAD_FUNC switch_nat_multicast_runtime(switch_thread_t *th if (!strncmp(pos, "ssdp:alive", 10)) { switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "got UPnP keep alive packet: \n%s\n", buf); /* did pub ip change */ + newip[0] = '\0'; if (get_upnp_pubaddr(newip) != SWITCH_STATUS_SUCCESS) { switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_WARNING, "Unable to get current pubaddr after receiving UPnP keep alive packet.\n"); }