summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThammi <thammi@chaossource.net>2013-07-19 19:10:21 +0200
committerYouness Alaoui <youness.alaoui@collabora.co.uk>2013-07-30 22:08:09 -0400
commit4df1b7d6db7303f21953e3349e226238bcfd74dc (patch)
tree68cd44b83a7f061368fa754a7c92e1d454caa2b2
parent67b73d0fc528c668d9e427a6bd1bb00980a04e80 (diff)
downloadlibnice-4df1b7d6db7303f21953e3349e226238bcfd74dc.tar.gz
Fix unitialized variable in nice_agent_parse_remote_candidate_sdp
-rw-r--r--agent/agent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/agent.c b/agent/agent.c
index 0b4fdff..034b53c 100644
--- a/agent/agent.c
+++ b/agent/agent.c
@@ -3450,7 +3450,7 @@ nice_agent_parse_remote_candidate_sdp (NiceAgent *agent, guint stream_id,
guint16 port;
const gchar *type = NULL;
const gchar *raddr = NULL;
- guint16 rport;
+ guint16 rport = 0;
static const gchar *type_names[] = {"host", "srflx", "prflx", "relay"};
guint i;