the sub request output filter shouldn't lose the return code from
the next filter
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89275
13f79535-47bb-0310-9956-
ffa450edef68
char bStripSlash=1;
#endif
- if (r->finfo.filetype) {
+ if (r->finfo.filetype != APR_NOFILE) {
/* assume path_info already set */
return OK;
}
if (APR_BUCKET_IS_EOS(e)) {
apr_bucket_delete(e);
}
- ap_pass_brigade(f->next, bb);
- return APR_SUCCESS;
+ return ap_pass_brigade(f->next, bb);
}