Details
Assignee
Michael OffnerMichael OffnerReporter
Brad WoodBrad WoodPriority
NewNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Brad Wood
Brad WoodPriority
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Created 13 April 2023 at 16:21
Updated 1 June 2023 at 13:22
There are actually two separate issues here. The first is that when java.io.tmpDir points to a folder which has not been created, Lucee ignores it instead of creating it.
The second issue is that when this happens, Lucee falls back to a second attempt at finding a temp directory by calling
which is INVALID as the JDK’s javadocs state, the prefix must be at least 3 characters.
Even though this code is in a try/catch, it only catches IOExceptions, but the error that is thrown is an IllegalArgumentException which does not get caught.
So, Lucee needs to
Fix the invalid call of
File.createTempFile()
to use a prefix of at least 3 charactersConsider creating missing temp directories, if permissions allow.