]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
From Pawel Worach:
authorhno <>
Sun, 7 Sep 2003 16:11:07 +0000 (16:11 +0000)
committerhno <>
Sun, 7 Sep 2003 16:11:07 +0000 (16:11 +0000)
HEAD errorpage.cc compile fix
Update this assert too now that the MemObject is gone.

src/errorpage.cc

index 46d5a33538cc44c743b32b4e807683134f3e7a37..b59db69a736ec9816d07ba69de4da81eaa96e8de 100644 (file)
@@ -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;
     }