]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Changing previous revisions 301845/301847 to use ast_sockaddr_setnull() instead
authorBrett Bryant <bbryant@digium.com>
Fri, 14 Jan 2011 20:11:55 +0000 (20:11 +0000)
committerBrett Bryant <bbryant@digium.com>
Fri, 14 Jan 2011 20:11:55 +0000 (20:11 +0000)
of setting the field manually to avoid uninitialized data.

Review: https://reviewboard.asterisk.org/r/1076/

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@301851 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_multicast_rtp.c

index 509a0ca8c6f81bd5c2d2bf22cccb3967d5875c1f..55b757567fc926a07b9df9112b7647d7b0284d01 100644 (file)
@@ -111,11 +111,13 @@ static struct ast_channel *multicast_rtp_request(const char *type, format_t form
 {
        char *tmp = ast_strdupa(data), *multicast_type = tmp, *destination, *control;
        struct ast_rtp_instance *instance;
-       struct ast_sockaddr control_address = { .len = 0 };
+       struct ast_sockaddr control_address;
        struct ast_sockaddr destination_address;
        struct ast_channel *chan;
        format_t fmt = ast_best_codec(format);
 
+       ast_sockaddr_setnull(&control_address);
+
        /* If no type was given we can't do anything */
        if (ast_strlen_zero(multicast_type)) {
                goto failure;