From: Automatic source maintenance Date: Mon, 14 Jul 2014 00:18:38 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_3_4_7~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a7fb0bcba34e65286f2b87fa8c1bc7c05114292;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/cache_cf.cc b/src/cache_cf.cc index eb7e069ce8..44fee4b245 100644 --- a/src/cache_cf.cc +++ b/src/cache_cf.cc @@ -893,7 +893,7 @@ configDoConfigure(void) Config2.effectiveGroupID = pwd->pw_gid; #if HAVE_PUTENV - if (pwd->pw_dir && *pwd->pw_dir) { + if (pwd->pw_dir && *pwd->pw_dir) { // putenv() leaks by design; avoid leaks when nothing changes static String lastDir; if (!lastDir.size() || lastDir != pwd->pw_dir) {