Re: mod_proxy and HTTP 302 response
Ian Holsman <[email protected]>
| Newsgroups | gmane.comp.apache.mod-proxy |
|---|---|
| Message-ID | <[email protected]> |
Graham Leggett wrote: > Brett Hutley wrote: > >> Yup. Note that the way 2.0.40 handles this, it strdups WHATEVER is >> pushed through afterwards to the status_line member of the >> request_rec structure. > > > Looking at this, it does this: > > r->status_line = apr_pstrdup(p, &buffer[9]); > > apr_pstrdup is not strdup as far as I am aware. Can someone check this > for me? > > Regards, > Graham Ok.. I put a patch through in Apache 2.0 which will fix the case where the server status line isn't present. and yes apr_pstrdup is the equivalent of strdup.