From: Philip Gladstone Date: Wed, 29 May 2002 21:18:06 +0000 (+0000) Subject: Make sure that the http_proxy environment variable starts with http:// X-Git-Tag: v0.5~17670 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3a2d04473d3be2864ea67f2bbda09733a3aa5827;p=platform%2Fupstream%2Flibav.git Make sure that the http_proxy environment variable starts with If not, then ignore it's value. Originally committed as revision 628 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libav/http.c b/libav/http.c index 43af02d..fb839f6 100644 --- a/libav/http.c +++ b/libav/http.c @@ -65,7 +65,7 @@ static int http_open(URLContext *h, const char *uri, int flags) h->priv_data = s; proxy_path = getenv("http_proxy"); - use_proxy = (proxy_path != NULL) && !getenv("no_proxy"); + use_proxy = (proxy_path != NULL) && !getenv("no_proxy") && (strncmp(proxy_path, "http://", 7) == 0); /* fill the dest addr */ redo: