482056 - Compact path before using it in getRequestDispatcher()

This commit is contained in:
Joakim Erdfelt 2015-11-23 14:23:56 -07:00
parent ea9c9d5f8d
commit efecc0c8cf
1 changed files with 2 additions and 0 deletions

View File

@ -1274,6 +1274,8 @@ public class Request implements HttpServletRequest
@Override
public RequestDispatcher getRequestDispatcher(String path)
{
path = URIUtil.compactPath(path);
if (path == null || _context == null)
return null;