]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix mixup of NULL and false in rev.12482
authorAmos Jeffries <squid3@treenet.co.nz>
Mon, 19 Nov 2012 13:05:45 +0000 (06:05 -0700)
committerAmos Jeffries <squid3@treenet.co.nz>
Mon, 19 Nov 2012 13:05:45 +0000 (06:05 -0700)
src/esi/Esi.cc

index 3f3bf5aa3f5e2ddb0819962914ba6f2aed0dea4d..f1e4327c581712524d9702f71d1b83fc369f72da 100644 (file)
@@ -2394,7 +2394,7 @@ esiWhen::evaluate()
 
 esiWhen::esiWhen(esiWhen const &old) :
         esiSequence(old),
-        testValue(NULL),
+        testValue(false),
         unevaluatedExpression(NULL),
         varState(NULL)
 {