X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=project.h;h=ff5b8fa32bfa90881d2186c3eafe747c03259707;hb=2f52bc05b70ec02f6cb47b5b35d7ac31a3185f5b;hp=a6c5315bd77876ab323b872d538497a6fa08c5fb;hpb=1c60716682ea6beb04a6a5419ab2c825973c98bf;p=privoxy.git diff --git a/project.h b/project.h index a6c5315b..ff5b8fa3 100644 --- a/project.h +++ b/project.h @@ -1,6 +1,6 @@ #ifndef PROJECT_H_INCLUDED #define PROJECT_H_INCLUDED -#define PROJECT_H_VERSION "$Id: project.h,v 1.31 2001/09/16 13:20:29 jongfoster Exp $" +#define PROJECT_H_VERSION "$Id: project.h,v 1.32 2001/09/16 23:02:51 jongfoster Exp $" /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/project.h,v $ @@ -36,6 +36,9 @@ * * Revisions : * $Log: project.h,v $ + * Revision 1.32 2001/09/16 23:02:51 jongfoster + * Fixing warning + * * Revision 1.31 2001/09/16 13:20:29 jongfoster * Rewrite of list library. Now has seperate header and list_entry * structures. Also added a large sprinking of assert()s to the list @@ -304,7 +307,7 @@ extern "C" { #endif -#define freez(X) if(X) free(X); X = NULL +#define freez(X) { if(X) { free(X); X = NULL ; } } #define BUFFER_SIZE 5000