From: oes Date: Wed, 20 Nov 2002 14:37:47 +0000 (+0000) Subject: Fix: Head of global clients list now initialized to NULL X-Git-Tag: v_3_0_1~75 X-Git-Url: http://www.privoxy.org/gitweb/?a=commitdiff_plain;h=4ee7397d1bb2bcab8ebe09e2ff82b9d5260d3f98;p=privoxy.git Fix: Head of global clients list now initialized to NULL --- diff --git a/jcc.c b/jcc.c index 54fd4710..8bdfa817 100644 --- a/jcc.c +++ b/jcc.c @@ -1,7 +1,7 @@ -const char jcc_rcs[] = "$Id: jcc.c,v 1.92 2002/05/08 16:00:46 oes Exp $"; +const char jcc_rcs[] = "$Id: jcc.c,v 1.92.2.1 2002/09/25 14:52:24 oes Exp $"; /********************************************************************* * - * File : $Source: /cvsroot/ijbswa//current/Attic/jcc.c,v $ + * File : $Source: /cvsroot/ijbswa/current/Attic/jcc.c,v $ * * Purpose : Main file. Contains main() method, main loop, and * the main connection-handling function. @@ -33,6 +33,13 @@ const char jcc_rcs[] = "$Id: jcc.c,v 1.92 2002/05/08 16:00:46 oes Exp $"; * * Revisions : * $Log: jcc.c,v $ + * Revision 1.92.2.1 2002/09/25 14:52:24 oes + * Added basic support for OPTIONS and TRACE HTTP methods: + * - New interceptor direct_response() added in chat(). + * - sed() moved to earlier in the process, so that the + * Host: header is evaluated before actions and forwarding + * are decided on. + * * Revision 1.92 2002/05/08 16:00:46 oes * Chat's buffer handling: * - Fixed bug with unchecked out-of-mem conditions @@ -1827,6 +1834,7 @@ int main(int argc, const char *argv[]) files->next = NULL; + clients->next = NULL; #ifdef AMIGA InitAmiga();