? sapi/apache/.libs Index: sapi/apache/mod_php5.c =================================================================== RCS file: /repository/php-src/sapi/apache/mod_php5.c,v retrieving revision 1.15 diff -u -p -d -r1.15 mod_php5.c --- sapi/apache/mod_php5.c 19 May 2005 15:57:45 -0000 1.15 +++ sapi/apache/mod_php5.c 20 Jun 2005 12:26:23 -0000 @@ -199,9 +199,7 @@ static int sapi_apache_header_handler(sa *p = ':'; /* a well behaved header handler shouldn't change its original arguments */ - efree(sapi_header->header); - - return 0; /* don't use the default SAPI mechanism, Apache duplicates this functionality */ + return SAPI_HEADER_ADD; } /* }}} */ Index: sapi/apache2filter/sapi_apache2.c =================================================================== RCS file: /repository/php-src/sapi/apache2filter/sapi_apache2.c,v retrieving revision 1.134 diff -u -p -d -r1.134 sapi_apache2.c --- sapi/apache2filter/sapi_apache2.c 8 Apr 2005 20:32:13 -0000 1.134 +++ sapi/apache2filter/sapi_apache2.c 20 Jun 2005 12:26:23 -0000 @@ -128,9 +128,7 @@ php_apache_sapi_header_handler(sapi_head else apr_table_add(ctx->r->headers_out, sapi_header->header, val); - sapi_free_header(sapi_header); - - return 0; + return SAPI_HEADER_ADD; } static int Index: sapi/apache2handler/sapi_apache2.c =================================================================== RCS file: /repository/php-src/sapi/apache2handler/sapi_apache2.c,v retrieving revision 1.54 diff -u -p -d -r1.54 sapi_apache2.c --- sapi/apache2handler/sapi_apache2.c 8 Apr 2005 20:32:14 -0000 1.54 +++ sapi/apache2handler/sapi_apache2.c 20 Jun 2005 12:26:23 -0000 @@ -112,9 +112,7 @@ php_apache_sapi_header_handler(sapi_head apr_table_add(ctx->r->headers_out, sapi_header->header, val); } - sapi_free_header(sapi_header); - - return 0; + return SAPI_HEADER_ADD; } static int Index: sapi/apache_hooks/mod_php5.c =================================================================== RCS file: /repository/php-src/sapi/apache_hooks/mod_php5.c,v retrieving revision 1.9 diff -u -p -d -r1.9 mod_php5.c --- sapi/apache_hooks/mod_php5.c 19 Apr 2005 11:41:04 -0000 1.9 +++ sapi/apache_hooks/mod_php5.c 20 Jun 2005 12:26:23 -0000 @@ -340,9 +340,7 @@ static int sapi_apache_header_handler(sa *p = ':'; /* a well behaved header handler shouldn't change its original arguments */ - efree(sapi_header->header); - - return 0; /* don't use the default SAPI mechanism, Apache duplicates this functionality */ + return SAPI_HEADER_ADD; } /* }}} */