summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorTerry Wilson <twilson@digium.com>2011-05-26 17:35:55 +0000
committerTerry Wilson <twilson@digium.com>2011-05-26 17:35:55 +0000
commit0c34e54d1ac88ab5d6666b3e0dbf19b1588f2436 (patch)
tree56ecb5e4f80bbd8a4a31eb2521192adb5d6f2016 /main
parent39281ed5dfafc2125baacff8e4411fb360d6eb32 (diff)
Merged revisions 321042 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r321042 | twilson | 2011-05-26 10:29:54 -0700 (Thu, 26 May 2011) | 6 lines Initialize stack-allocated ast_sockaddrs before use It is important to always initialize ast_sockaddrs before use--even if they are passed to ast_sockaddr_copy as the underlying storage could be bigger than what ends up being copied--leaving part of the data unitialized. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@321043 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main')
-rw-r--r--main/rtp_engine.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/rtp_engine.c b/main/rtp_engine.c
index acd6c4a2c..3c5ef8b36 100644
--- a/main/rtp_engine.c
+++ b/main/rtp_engine.c
@@ -1282,7 +1282,7 @@ enum ast_bridge_result ast_rtp_instance_bridge(struct ast_channel *c0, struct as
*vinstance0 = NULL, *vinstance1 = NULL,
*tinstance0 = NULL, *tinstance1 = NULL;
struct ast_rtp_glue *glue0, *glue1;
- struct ast_sockaddr addr1, addr2;
+ struct ast_sockaddr addr1 = { {0, }, }, addr2 = { {0, }, };
enum ast_rtp_glue_result audio_glue0_res = AST_RTP_GLUE_RESULT_FORBID, video_glue0_res = AST_RTP_GLUE_RESULT_FORBID;
enum ast_rtp_glue_result audio_glue1_res = AST_RTP_GLUE_RESULT_FORBID, video_glue1_res = AST_RTP_GLUE_RESULT_FORBID;
enum ast_bridge_result res = AST_BRIDGE_FAILED;