Commit c06cf09d authored by Dafydd Harries's avatar Dafydd Harries

initialize addresses in tests

darcs-hash:20070205193200-c9803-bf1a8f60585945ba70a7083d4882321dcb2cc4ac.gz
parent 235ff058
...@@ -27,7 +27,7 @@ int ...@@ -27,7 +27,7 @@ int
main (void) main (void)
{ {
NiceAgent *agent; NiceAgent *agent;
NiceAddress addr; NiceAddress addr = {0,};
NiceCandidate *candidate; NiceCandidate *candidate;
NiceUDPSocketFactory factory; NiceUDPSocketFactory factory;
NiceUDPSocket *sock; NiceUDPSocket *sock;
......
...@@ -197,7 +197,8 @@ int ...@@ -197,7 +197,8 @@ int
main (void) main (void)
{ {
NiceAgent *agent; NiceAgent *agent;
NiceAddress local_addr, remote_addr; NiceAddress local_addr = {0,};
NiceAddress remote_addr = {0,};
NiceCandidate *candidate; NiceCandidate *candidate;
NiceUDPSocketFactory factory; NiceUDPSocketFactory factory;
NiceUDPSocket *sock; NiceUDPSocket *sock;
......
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