From: wessels <> Date: Thu, 12 Sep 1996 06:31:12 +0000 (+0000) Subject: - Fixed FMR bug in neighborsUdpAck() for UDP_HIT_OBJ replies. X-Git-Tag: SQUID_3_0_PRE1~5834 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37bcb3329aa9d2ea67036c589519dd0de6578bce;p=thirdparty%2Fsquid.git - Fixed FMR bug in neighborsUdpAck() for UDP_HIT_OBJ replies. --- diff --git a/src/neighbors.cc b/src/neighbors.cc index 1d46a89181..5a4d42bcdd 100644 --- a/src/neighbors.cc +++ b/src/neighbors.cc @@ -1,5 +1,5 @@ /* - * $Id: neighbors.cc,v 1.46 1996/08/30 22:44:09 wessels Exp $ + * $Id: neighbors.cc,v 1.47 1996/09/12 00:31:12 wessels Exp $ * * DEBUG: section 15 Neighbor Routines * AUTHOR: Harvest Derived @@ -615,11 +615,11 @@ void neighborsUdpAck(fd, url, header, from, entry, data, data_sz) httpState->entry = entry; httpProcessReplyHeader(httpState, data, data_sz); storeAppend(entry, data, data_sz); - storeComplete(entry); hierarchyNote(entry->mem_obj->request, e->type == EDGE_PARENT ? HIER_PARENT_UDP_HIT_OBJ : HIER_SIBLING_UDP_HIT_OBJ, 0, e->host); + storeComplete(entry); /* This might release entry! */ if (httpState->reply_hdr) put_free_8k_page(httpState->reply_hdr); safe_free(httpState);