You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some modules that shortcut translation handler and don't run uri->filename translation (one of those modules is IBM WebSphere 7 plugin) leave request_rec->filename equals to NULL, which makes mod_xsendfile segfault in ap_xsendfile_get_orginal_path because of ap_strrchr(rv, '/') - where rv is NULL.
The possible solution is to check if request_rec->filename is NULL and assign request_rec->filename = request_rec->uri
Here is an email thread from 2002 explaining this problem a little bit.
The text was updated successfully, but these errors were encountered:
Some modules that shortcut translation handler and don't run uri->filename translation (one of those modules is IBM WebSphere 7 plugin) leave request_rec->filename equals to NULL, which makes mod_xsendfile segfault in ap_xsendfile_get_orginal_path because of ap_strrchr(rv, '/') - where rv is NULL.
The possible solution is to check if request_rec->filename is NULL and assign request_rec->filename = request_rec->uri
Here is an email thread from 2002 explaining this problem a little bit.
The text was updated successfully, but these errors were encountered: