From f0faee43f9a34e59db96d8821af3954ce8e53b84 Mon Sep 17 00:00:00 2001 From: robertc <> Date: Mon, 16 Sep 2002 02:57:19 +0000 Subject: [PATCH] fix old sc location references --- src/client_side_reply.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/client_side_reply.cc b/src/client_side_reply.cc index 2bcf876d89..13afc470f8 100644 --- a/src/client_side_reply.cc +++ b/src/client_side_reply.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side_reply.cc,v 1.4 2002/09/15 14:42:05 robertc Exp $ + * $Id: client_side_reply.cc,v 1.5 2002/09/15 20:57:19 robertc Exp $ * * DEBUG: section 88 Client-side Reply Routines * AUTHOR: Robert Collins (Originally Duane Wessels in client_side.c) @@ -217,7 +217,7 @@ clientProcessExpired(clientReplyContext * context) * it is not, then the beginning of the object data might get * freed from memory before we need to access it. */ - assert(http->sc->owner == context); + assert(context->sc->owner == context); #endif /* Prepare to make a new temporary request */ clientReplyContextSaveState(context, http); @@ -1324,7 +1324,7 @@ clientGetMoreData(clientStreamNode * this, clientHttpRequest * http) } context->sc = storeClientListAdd(context->http->entry, context); #if DELAY_POOLS - delaySetStoreClient(context->http->sc, delayClient(context->http)); + delaySetStoreClient(context->sc, delayClient(context->http)); #endif assert(context->http->logType == LOG_TCP_HIT); context->reqofs = 0; -- 2.47.2