https://issues.apache.org/bugzilla/show_bug.cgi?id=57031

Dominik Stadler <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |NEW

--- Comment #5 from Dominik Stadler <[email protected]> ---
Can reproduce this, the following steps suffice to cause OOM, seems reading the
900k file fails in the Piccolo-XMLParser that is used inside XMLBeans:

        String filePath = "test-data/document/57031.docx";

        ZipFile zf = new ZipFile(filePath);
        ZipEntry entry = zf.getEntry("word/document.xml");

        DocumentDocument document =
DocumentDocument.Factory.parse(zf.getInputStream(entry));
        assertNotNull(document);

        zf.close();

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to