--------------------- PatchSet 4800 Date: 2002/08/28 07:00:19 Author: rbcollins Branch: esi Tag: (none) Log: minor tidyup Members: src/clientStream.c:1.1.2.7->1.1.2.8 Index: squid/src/clientStream.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/Attic/clientStream.c,v retrieving revision 1.1.2.7 retrieving revision 1.1.2.8 diff -u -r1.1.2.7 -r1.1.2.8 --- squid/src/clientStream.c 28 Aug 2002 06:11:30 -0000 1.1.2.7 +++ squid/src/clientStream.c 28 Aug 2002 07:00:19 -0000 1.1.2.8 @@ -1,6 +1,6 @@ /* - * $Id: clientStream.c,v 1.1.2.7 2002/08/28 06:11:30 rbcollins Exp $ + * $Id: clientStream.c,v 1.1.2.8 2002/08/28 07:00:19 rbcollins Exp $ * * DEBUG: section 87 Client-side Strean routines. * AUTHOR: Robert Collins @@ -126,7 +126,6 @@ { clientStreamNode *temp = clientStreamNew(func, NULL, rdetach, readstatus, readdata); dlinkAdd (temp, &temp->node, list); - /* FIXME: clientStreamDelete */ cbdataReference (temp); temp->head = list; clientStreamInsertHead (list, NULL, callback, cdetach, NULL, callbackdata); @@ -152,7 +151,6 @@ temp->head = list; debug (87,3)("clientStreamInsertHead: Inserted node %p with data %p after head\n", temp, data); dlinkAddAfter (temp, &temp->node, list->head, list); - /* FIXME (clientStreamDelete */ cbdataReference (temp); } @@ -233,15 +231,11 @@ { clientStreamNode *this = foo; debug (87, 3) ("Freeing clientStreamNode %p\n", this); - /* ESI TODO: push refcount class through to head */ if (this->data) { cbdataFree (this->data); } if (this->node.next || this->node.prev) { -// clientStreamNode *temp = this->node.next->data; - /* cbdataReferenceDone (this->node.next->data); */ dlinkDelete (&this->node, this->head); -// cbdataFree (temp); } }