You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cxf.apache.org by GitBox <gi...@apache.org> on 2021/10/27 02:56:29 UTC

[GitHub] [cxf] ppanda2021 commented on a change in pull request #867: CXF-8610:Add null check to IOUtils to avoid null CCL

ppanda2021 commented on a change in pull request #867:
URL: https://github.com/apache/cxf/pull/867#discussion_r737064006



##########
File path: core/src/main/java/org/apache/cxf/helpers/IOUtils.java
##########
@@ -240,6 +244,9 @@ public static int copy(final InputStream input, final OutputStream output,
     public static void copyAtLeast(final InputStream input,
                                final OutputStream output,
                                int atLeast) throws IOException {
+        if (input == null || output == null ) {

Review comment:
       Thank you for your reply. I'll revise it as soon as possible as you suggest.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@cxf.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org