From: hno <> Date: Sun, 7 Sep 2003 16:11:07 +0000 (+0000) Subject: From Pawel Worach: X-Git-Tag: SQUID_3_0_PRE4~1216 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6ea352477b3d82f148f0874008fb48e27a78e741;p=thirdparty%2Fsquid.git From Pawel Worach: HEAD errorpage.cc compile fix Update this assert too now that the MemObject is gone. --- diff --git a/src/errorpage.cc b/src/errorpage.cc index 46d5a33538..b59db69a73 100644 --- a/src/errorpage.cc +++ b/src/errorpage.cc @@ -1,6 +1,6 @@ /* - * $Id: errorpage.cc,v 1.192 2003/09/06 12:47:35 robertc Exp $ + * $Id: errorpage.cc,v 1.193 2003/09/07 10:11:07 hno Exp $ * * DEBUG: section 4 Error Generation * AUTHOR: Duane Wessels @@ -354,7 +354,7 @@ errorAppendEntry(StoreEntry * entry, ErrorState * err) * error message */ assert(EBIT_TEST(entry->flags, ENTRY_ABORTED)); - assert(mem->nclients == 0); + assert(entry->mem_obj->nclients == 0); errorStateFree(err); return; }