You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Scanning the following code will cause a NullPointerException:
component {
function render() {
writeOutput("</div>");
}
}
There is no exception when:
there's a preceding writeOutput("<div>"); line
the string contains anything else than the closing HTML tag, ie. writeOutput("div") (the opening tag, instead of the closing one) or writeOutput("foo").
The text was updated successfully, but these errors were encountered:
Interesting. That happens as part of the 'detection' process whether it is pure cfscript or cfml. The message is now suppressed unless you have vebose enabled.
Scanning the following code will cause a
NullPointerException
:There is no exception when:
writeOutput("<div>");
linewriteOutput("div")
(the opening tag, instead of the closing one) orwriteOutput("foo")
.The text was updated successfully, but these errors were encountered: