Title:
[ANeff] Bug for: writeDump(BIF) (and cfdump) exception or misleading when NULL enabled
| View in TrackerStatus/Resolution/Reason: Closed/Fixed/Fixed
Reporter/Name(from Bugbase): Aaron Neff / ()
Created: 05/01/2018
Components: Debugging, writeDump
Versions: 2018
Failure Type: Incorrectly functioning
Found In Build/Fixed In Build: 2018.0.01.308605 (PreRelease) / 2018,0,0,308938
Priority/Frequency: Normal / Few users will encounter
Locale/System: / Platforms All
Vote Count: 0
Issue: writeDump(BIF) (and cfdump) exception or misleading when NULL enabled
Steps to Reproduce: Run both below examples with NULL support enabled:
<cfscript>
writeDump(arrayNew)
</cfscript>
<cfscript>
function f(a) {
writeDump(ARGUMENTS)
}
f(arrayNew)
</cfscript>
Actual Result: 1st throws exception; 2nd dumps {a=[undefined struct element]}
Expected Result: coldfusion.runtime.CFPageMethod dumped correctly (as seen in CF2016 and w/ NULL support disabled)
Attachments:
Comments: