Commit 18522d7a authored by Fabrice Bellet's avatar Fabrice Bellet Committed by Olivier Crête

examples: fix compiler warning about uninitialized variables

parent 07d3caa5
...@@ -289,7 +289,7 @@ static NiceCandidate * ...@@ -289,7 +289,7 @@ static NiceCandidate *
parse_candidate(char *scand, guint _stream_id) parse_candidate(char *scand, guint _stream_id)
{ {
NiceCandidate *cand = NULL; NiceCandidate *cand = NULL;
NiceCandidateType ntype; NiceCandidateType ntype = NICE_CANDIDATE_TYPE_HOST;
gchar **tokens = NULL; gchar **tokens = NULL;
guint i; guint i;
......
...@@ -311,7 +311,7 @@ static NiceCandidate * ...@@ -311,7 +311,7 @@ static NiceCandidate *
parse_candidate(char *scand, guint stream_id) parse_candidate(char *scand, guint stream_id)
{ {
NiceCandidate *cand = NULL; NiceCandidate *cand = NULL;
NiceCandidateType ntype; NiceCandidateType ntype = NICE_CANDIDATE_TYPE_HOST;
gchar **tokens = NULL; gchar **tokens = NULL;
guint i; guint i;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment