From fb28b14d481b6e65f71da7046e0b19b937bba95c Mon Sep 17 00:00:00 2001 From: Andreas Beeker Date: Thu, 4 May 2017 01:13:48 +0000 Subject: [PATCH] test integration fix git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1793733 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/org/apache/poi/hpsf/examples/CopyCompare.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/examples/src/org/apache/poi/hpsf/examples/CopyCompare.java b/src/examples/src/org/apache/poi/hpsf/examples/CopyCompare.java index c76c43f54..8282c0057 100644 --- a/src/examples/src/org/apache/poi/hpsf/examples/CopyCompare.java +++ b/src/examples/src/org/apache/poi/hpsf/examples/CopyCompare.java @@ -401,11 +401,13 @@ public class CopyCompare final String name, final DocumentInputStream stream) throws IOException { + // create the directories to the document + final DirectoryEntry de = getPath(poiFs, path); + // check the parameters after the directories have been created if (stream == null || name == null) { // Empty directory return; } - final DirectoryEntry de = getPath(poiFs, path); final ByteArrayOutputStream out = new ByteArrayOutputStream(); int c; while ((c = stream.read()) != -1) {