Status/Resolution/Reason: Closed/Withdrawn/
Reporter/Name(from Bugbase): Kip Robinson / Kip Robinson (krobinsonverian)
Created: 03/04/2013
Components: Language
Versions: 9.0.1
Failure Type: Crash
Found In Build/Fixed In Build: 9.0.1 /
Priority/Frequency: Trivial / Unknown
Locale/System: English / Windows 7
Vote Count: 1
Duplicate ID: CF-3605332
Problem Description: using CFCATCH variable in the definition of an implicit struct on a return statement is failing. As far as I can tell there is nothing syntactically wrong with this. It seems to only happen when a cfreturn tag is inside a cfcatch tag. See the attached example.
Steps to Reproduce:
Put the following code inside a CFCATCH tag, and trigger an exception:
<cfreturn foo2('error', {errDetails="#cfcatch.Message#-#cfcatch.Detail#"}) />
Actual Result:
CF Exception: MESSAGE is undefined in CFCATCH
Expected Result:
no error message. implicit struct is created.
Any Workarounds:
This works:
<cfset ret = foo2('error', {errDetails="#cfcatch.Message#-#cfcatch.Detail#"}) />
<cfreturn ret />
This also works:
<cfset stcErr = {errDetails="#cfcatch.Message#-#cfcatch.Detail#"} />
<cfreturn foo2('error', stcErr) />
----------------------------- Additional Watson Details -----------------------------
Watson Bug ID: 3512878
External Customer Info:
External Company:
External Customer Name: krobinsonverian
External Customer Email:
External Test Config: My Hardware and Environment details:
Windows 7 64-bit
Attachments:
- March 05, 2013 00:00:00: 1_cfcatch_error.cfm
Comments: