[FFmpeg-cvslog] r14946 - trunk/libavformat/tcp.c
rbultje
subversion
Sun Aug 24 18:22:43 CEST 2008
Author: rbultje
Date: Sun Aug 24 18:22:40 2008
New Revision: 14946
Log:
Remove check for @ in tcp.c which removes the authorization data from the
actual hostname. This functionality already exists (and always existed) in
url_split() and is therefore useless. See discussion in "[PATCH] tcp.c/udp.c
memleak?" thread on ffmpeg-devel.
Modified:
trunk/libavformat/tcp.c
Modified: trunk/libavformat/tcp.c
==============================================================================
--- trunk/libavformat/tcp.c (original)
+++ trunk/libavformat/tcp.c Sun Aug 24 18:22:40 2008
@@ -38,7 +38,7 @@ static int tcp_open(URLContext *h, const
int fd_max, ret;
struct timeval tv;
socklen_t optlen;
- char hostname[1024],proto[1024],path[1024],tmp[1024],*q;
+ char hostname[1024],proto[1024],path[1024];
if(!ff_network_init())
return AVERROR(EIO);
@@ -47,7 +47,6 @@ static int tcp_open(URLContext *h, const
&port, path, sizeof(path), uri);
if (strcmp(proto,"tcp") || port <= 0 || port >= 65536)
return AVERROR(EINVAL);
- if ((q = strchr(hostname,'@'))) { strcpy(tmp,q+1); strcpy(hostname,tmp); }
dest_addr.sin_family = AF_INET;
dest_addr.sin_port = htons(port);
More information about the ffmpeg-cvslog
mailing list