--------------------- PatchSet 2128 Date: 2005/11/07 21:22:52 Author: dwsquid Branch: squid3-icap Tag: (none) Log: Don't use a local variable for HttpReply that conflicts with (overwrites) the class member. Members: src/http.cc:1.49.2.52->1.49.2.53 Index: squid3/src/http.cc =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/http.cc,v retrieving revision 1.49.2.52 retrieving revision 1.49.2.53 diff -u -r1.49.2.52 -r1.49.2.53 --- squid3/src/http.cc 7 Nov 2005 20:26:11 -0000 1.49.2.52 +++ squid3/src/http.cc 7 Nov 2005 21:22:52 -0000 1.49.2.53 @@ -1,6 +1,6 @@ /* - * $Id: http.cc,v 1.49.2.52 2005/11/07 20:26:11 dwsquid Exp $ + * $Id: http.cc,v 1.49.2.53 2005/11/07 21:22:52 dwsquid Exp $ * * DEBUG: section 11 Hypertext Transfer Protocol (HTTP) * AUTHOR: Harvest Derived @@ -708,7 +708,7 @@ /* Creates a blank header. If this routine is made incremental, this will * not do */ - HttpReply *reply = new HttpReply; + reply = new HttpReply; Ctx ctx = ctx_enter(entry->mem_obj->url); debug(11, 3) ("processReplyHeader: key '%s'\n", entry->getMD5Text());