You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Sebastian Bergmann <li...@sebastian-bergmann.de> on 2002/05/12 13:38:21 UTC

Current HEAD segfaults on Win32

  Current HEAD segfaults on Win32 on requests that involve CGI (PHP),
  static HTML files are served without crashing.

  Stacktrace is as follows:

ap_make_content_type(request_rec * 0x005786e8, const char * 0x00571e88)
line 171 + 19 bytes
ap_http_header_filter(ap_filter_t * 0x005778f8, apr_bucket_brigade *
0x00571d88) line 1444 + 19 bytes
ap_pass_brigade(ap_filter_t * 0x005778f8, apr_bucket_brigade * 0x00571d88)
line 534 + 16 bytes
ap_fflush(ap_filter_t * 0x005778f8, apr_bucket_brigade * 0x00571d88) line
581
ap_content_length_filter(ap_filter_t * 0x005778e0, apr_bucket_brigade *
0x00571d88) line 1255 + 16 bytes
ap_pass_brigade(ap_filter_t * 0x005778e0, apr_bucket_brigade * 0x00571d88)
line 534 + 16 bytes
ap_byterange_filter(ap_filter_t * 0x005778c8, apr_bucket_brigade *
0x00571d88) line 2663 + 16 bytes
ap_pass_brigade(ap_filter_t * 0x005778c8, apr_bucket_brigade * 0x00571d88)
line 534 + 16 bytes
cgi_handler(request_rec * 0x005786e8) line 776
ap_run_handler(request_rec * 0x005786e8) line 194 + 78 bytes
ap_invoke_handler(request_rec * 0x005786e8) line 373 + 9 bytes
ap_internal_redirect_handler(const char * 0x005786a0, request_rec *
0x00577150) line 502 + 9 bytes
action_handler(request_rec * 0x00577150) line 221
ap_run_handler(request_rec * 0x00577150) line 194 + 78 bytes
ap_invoke_handler(request_rec * 0x00577150) line 373 + 9 bytes
ap_process_request(request_rec * 0x00577150) line 261 + 9 bytes
ap_process_http_connection(conn_rec * 0x0056d0f8) line 291 + 9 bytes
ap_run_process_connection(conn_rec * 0x0056d0f8) line 85 + 78 bytes
ap_process_connection(conn_rec * 0x0056d0f8, void * 0x0056d038) line 209
worker_main(long 249) line 1135
_threadstartex(void * 0x0059c090) line 212 + 13 bytes

-- 
  Sebastian Bergmann
  http://sebastian-bergmann.de/                 http://phpOpenTracker.de/

  Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/

Re: Current HEAD segfaults on Win32

Posted by Sebastian Bergmann <li...@sebastian-bergmann.de>.
Brian Pane wrote:
> Sorry about that.  I just committed a change that should fix
> the problem (the precompiled list of strmatch patterns wasn't
> properly terminated).

  The segfault is gone, thanks.

-- 
  Sebastian Bergmann
  http://sebastian-bergmann.de/                 http://phpOpenTracker.de/

  Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/

Re: Current HEAD segfaults on Win32

Posted by Brian Pane <bp...@pacbell.net>.
Sebastian Bergmann wrote:

>  Current HEAD segfaults on Win32 on requests that involve CGI (PHP),
>  static HTML files are served without crashing.
>
>  Stacktrace is as follows:
>
>ap_make_content_type(request_rec * 0x005786e8, const char * 0x00571e88)
>line 171 + 19 bytes
>

Sorry about that.  I just committed a change that should fix
the problem (the precompiled list of strmatch patterns wasn't
properly terminated).

--Brian