Details
Assignee
Michael OffnerMichael OffnerReporter
Brian RamseyBrian RamseyPriority
NewLabels
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
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Brian Ramsey
Brian RamseyPriority
Labels
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 11 June 2020 at 23:20
Updated 17 June 2024 at 08:39
When attempting to break from a loop using the newer `times` functionality (https://docs.lucee.org/guides/lucee-5/times.html) you get a Null Pointer Exception. This occurs in both cfscript and tag.
Only tested on the 2 latest versions my apps are running.
<cfscript> loop times=10 { break; } </cfscript> <cfloop times=10> <cfbreak> </cfloop>