https://bz.apache.org/bugzilla/show_bug.cgi?id=61138

            Bug ID: 61138
           Summary: DefaultTempFileCreationStrategy crashed in multi user
                    mode
           Product: POI
           Version: 3.16-FINAL
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: critical
          Priority: P2
         Component: POI Overall
          Assignee: [email protected]
          Reporter: [email protected]
  Target Milestone: ---

The DefaultTempFileCreationStrategy creates a sub directory in the TEMP
directory of the system

line 79: dir = new File(tmpDir, POIFILES);

But, in multi user mode, the directory /tmp/poifiles is not writeable because
owned by another user

I changed this with 
dir = new File(tmpDir, IzarTempFileCreationStrategy.POIFILES + '-' +
System.getProperty("user.name"));

And then i works fine !

-- 
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