From 59c2959d07d7019350b10661b02ba17e6d0c4fa5 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sat, 7 Jun 2008 23:56:00 +0000 Subject: [PATCH] use unsetenv, fix warning, patch by Stefano Sabatini, stefano dot sabatini-lala at poste dot it Originally committed as revision 13707 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffserver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffserver.c b/ffserver.c index 70b5850f02..cbd1512a84 100644 --- a/ffserver.c +++ b/ffserver.c @@ -4385,7 +4385,7 @@ int main(int argc, char **argv) parse_options(argc, argv, options, NULL); - putenv("http_proxy"); /* Kill the http_proxy */ + unsetenv("http_proxy"); /* Kill the http_proxy */ av_init_random(av_gettime() + (getpid() << 16), &random_state);