You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2019/03/07 11:59:38 UTC

[tomcat] branch 7.0.x updated: Fix back-port for BZ63206 / 6e3551b

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/7.0.x by this push:
     new be024ab  Fix back-port for BZ63206 / 6e3551b
be024ab is described below

commit be024ab104271d88f8646139980d396deeab11af
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Thu Mar 7 11:59:11 2019 +0000

    Fix back-port for BZ63206 / 6e3551b
---
 java/org/apache/catalina/connector/Request.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/java/org/apache/catalina/connector/Request.java b/java/org/apache/catalina/connector/Request.java
index 8a18bc9..a7877fb 100644
--- a/java/org/apache/catalina/connector/Request.java
+++ b/java/org/apache/catalina/connector/Request.java
@@ -2876,7 +2876,7 @@ implements HttpServletRequest {
 
             if (!location.exists() && context.getCreateUploadTargets()) {
                 log.warn(sm.getString("coyoteRequest.uploadCreate",
-                        location.getAbsolutePath(), getMappingData().wrapper.getName()));
+                        location.getAbsolutePath(), ((Wrapper)getMappingData().wrapper).getName()));
                 if (!location.mkdirs()) {
                     log.warn(sm.getString("coyoteRequest.uploadCreateFail",
                             location.getAbsolutePath()));


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org