[FFmpeg-cvslog] r11037 - trunk/libavformat/udp.c

lucabe subversion
Thu Nov 15 14:41:51 CET 2007


Author: lucabe
Date: Thu Nov 15 14:41:51 2007
New Revision: 11037

Log:
Remove the useless variable "my_addr1"


Modified:
   trunk/libavformat/udp.c

Modified: trunk/libavformat/udp.c
==============================================================================
--- trunk/libavformat/udp.c	(original)
+++ trunk/libavformat/udp.c	Thu Nov 15 14:41:51 2007
@@ -294,7 +294,7 @@ static int udp_open(URLContext *h, const
     const char *p;
     char buf[256];
 #ifndef CONFIG_IPV6
-    struct sockaddr_in my_addr, my_addr1;
+    struct sockaddr_in my_addr;
     int len;
 #endif
 
@@ -358,9 +358,9 @@ static int udp_open(URLContext *h, const
     if (bind(udp_fd,(struct sockaddr *)&my_addr, sizeof(my_addr)) < 0)
         goto fail;
 
-    len = sizeof(my_addr1);
-    getsockname(udp_fd, (struct sockaddr *)&my_addr1, &len);
-    s->local_port = ntohs(my_addr1.sin_port);
+    len = sizeof(my_addr);
+    getsockname(udp_fd, (struct sockaddr *)&my_addr, &len);
+    s->local_port = ntohs(my_addr.sin_port);
 #else
     udp_fd = udp_ipv6_set_local(h);
     if (udp_fd < 0)




More information about the ffmpeg-cvslog mailing list