mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Fix some uninitialized memory notices that appeared under valgrind.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@187772 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -3163,8 +3163,8 @@ static int oh323_set_rtp_peer(struct ast_channel *chan, struct ast_rtp_instance
|
||||
{
|
||||
/* XXX Deal with Video */
|
||||
struct oh323_pvt *pvt;
|
||||
struct sockaddr_in them;
|
||||
struct sockaddr_in us;
|
||||
struct sockaddr_in them = { 0, };
|
||||
struct sockaddr_in us = { 0, };
|
||||
char *mode;
|
||||
|
||||
if (!rtp) {
|
||||
|
Reference in New Issue
Block a user