From: Amos Jeffries Date: Tue, 1 Sep 2015 18:40:41 +0000 (-0700) Subject: Fix FreeBSD Clang-3.5 build error X-Git-Tag: SQUID_3_5_8~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1e2a8cf892c3d31f0e8a8b04f1afd932689113f3;p=thirdparty%2Fsquid.git Fix FreeBSD Clang-3.5 build error --- diff --git a/src/clients/Client.cc b/src/clients/Client.cc index 32f3c3a311..7bac59177d 100644 --- a/src/clients/Client.cc +++ b/src/clients/Client.cc @@ -800,7 +800,7 @@ void Client::handleAdaptedBodyProducerAborted() if (abortOnBadEntry("entry went bad while waiting for the now-aborted adapted body")) return; - Must(adaptedBodySource != nullptr); + Must(adaptedBodySource != NULL); if (!adaptedBodySource->exhausted()) { debugs(11,5, "waiting to consume the remainder of the aborted adapted body"); return; // resumeBodyStorage() should eventually consume the rest