View | Details | Raw Unified | Return to bug 43241
Collapse All | Expand All

(-)java/org/apache/catalina/core/ApplicationContext.java (-1 / +1 lines)
Lines 507-513 Link Here
507
    public InputStream getResourceAsStream(String path) {
507
    public InputStream getResourceAsStream(String path) {
508
508
509
        path = normalize(path);
509
        path = normalize(path);
510
        if (path == null)
510
        if (path == null  || !path.startsWith("/"))
511
            return (null);
511
            return (null);
512
512
513
        DirContext resources = context.getResources();
513
        DirContext resources = context.getResources();

Return to bug 43241