Inconsistent Stack Height 1 != 0 NULL

Posted June 17, 2008 at 8:44 AM by Ben Nadel

Tags: ColdFusion

Yesterday, I got a ColdFusion error that I had never seen before:

java.lang.VerifyError (class: cftest212ecfm1626437113, method: runPage signature: ()Ljava/lang/Object;) Inconsistent stack height 1 != 0 null

That's certainly an error that sounds really bad. But, after some tag-context debugging, it came down to a silly commenting mistake. I had something like this:

  • <!--- Pick a random number. --->
  • <cfswitch expression="#RandRange( 1, 2 )#">
  •  
  • <cfcase value="1">
  • <cfset WriteOutput( 1 ) />
  • </cfcase>
  •  
  • <cfcase value="2">
  • <cfset WriteOutput( 2 ) />
  • </cfcase>
  •  
  • <cfdefaultcase>
  •  
  • <cfswitch expression="#RandRange( 3, 4 )#">
  • <!---
  • I'll figure out these cases later. For now,
  • just leave in the top-level switch.
  • --->
  • </cfswitch>
  •  
  • </cfdefaultcase>
  •  
  • </cfswitch>

I had a CFSwitch statement inside of the CFDefaultCase of an outer CFSwitch statement. I had meant to comment out the nested CFSwitch statement, but accidentally, I commented out the nested CFCase statements only, leaving in the nested CFSwitch tag. My scenario was one of nesting, but if you have any ColdFusion CFSwitch tag that does not have any CFCase tags, you will get a similar error. For example, if I had a page that only had a CFSwitch statement, I get this error:

java.lang.VerifyError (class: cftest212ecfm1626437113, method: runPage signature: ()Ljava/lang/Object;) Inconsistent stack height 1 != 2

As you can see, this time it's (1 != 2) rather than (1 != 0), but other than that, it's the same error.



Reader Comments

Jun 17, 2008 at 9:29 AM // reply »
12 Comments

Hmmm, tried to reproduce it but couldnt. I am on CF 7 and just added a CFSWITCH statement without any cfcase. Got no errors.


Jun 17, 2008 at 9:30 AM // reply »
14 Comments

In FlexBuilder empty switch statement (without any case) gives:

An internal build error has occurred. Right-click for more information.

Without pointing out where the error exactly is. Nice :)


Jun 17, 2008 at 9:34 AM // reply »
11,238 Comments

@Anuj,

I am on ColdFusion 8.0.1. Maybe this is a new debugging message in CF8.


Jun 17, 2008 at 11:53 AM // reply »
12 Comments

@Ben, tried on CF8. No errors! You sure you got nothing else on the page that could have caused this error?


Jun 17, 2008 at 11:55 AM // reply »
11,238 Comments

@Anuj,

It must cause some errors!?!? There is no way in ColdFusion to have a CFSwitch statement that has nothing inside of it.... as far as I know.

There is nothing else on the page. I was able to reproduce in two pages.


Jun 17, 2008 at 12:25 PM // reply »
12 Comments

Right. I got the error this time but I had to wrap my code in a cftry/catch block. Then I got this Error 500 which you stated. As soon as I removed my cftry block, I only got an empty page. I didnt try to investigate why I got the empty page when I should be getting the error but yes, we cant have a cfswitch without a cfcase, point noted. :) thanks.


Jun 17, 2008 at 12:27 PM // reply »
11,238 Comments

@Anuj,

I guess CF8 just changes the error that is thrown or something.


Jun 17, 2008 at 12:29 PM // reply »
14 Comments

@Anuj: does it mean in yor case syntactic error may be just catched?


Jun 17, 2008 at 12:36 PM // reply »
14 Comments

No, obviosly no. Sorry... I see now where the problem is.


Don
Oct 8, 2009 at 3:20 PM // reply »
57 Comments

WOW! This time I just came right to your site. I had pretty much figured it out but checked anyway with a search for that error. Sure enuff, you had the exact same answer I had pretty much guessed at.
I am doing a project on MX 7 and I was just trying out a menu switch. I have 2 switches inside of cfif/else blocks. I just put cases in 1 of the switches and wanted to see how it looked and worked. I got that error.
Being the brainiac that I am, I guessed that it was the empty switch. So I put in a default case but that didn't help so I did my search here, found I was right, and refreshed again and it worked.
whew.


Oct 31, 2009 at 5:38 PM // reply »
11,238 Comments

@Don,

Empty cases are fun... as are empty SQL statements - another thing that gets interesting with lots of conditional logic.


Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Supported HTML tags for formatting: <strong>bold</strong>   <em>italic</em>   <code>code</code>







  • Help Wanted - Find Your Next ColdFusion Job
Ben Nadel's Company - Epicenter Consulting Recent Blog Comments
May 17, 2013 at 7:42 PM
HashKeyCopier - An AngularJS Utility Class For Merging Cached And Live Data
Ben - thanks so much for posting these Angular articles and findings, they've been a huge help towards learning one of the more 'complex' JavaScript frameworks out there (IMO). I have been using Angu ... read »
May 16, 2013 at 5:01 PM
UPDATE: Parsing CSV Data Files In ColdFusion With csvToArray()
Your code was the closest thing I've found to obtaining some direction for converting ISO fields to values that CF can translate properly. Thank you for posting! ... read »
May 15, 2013 at 10:37 PM
Very Simple Pusher And ColdFusion Powered Chat
hi id making plz easy ... read »
May 15, 2013 at 6:07 PM
Making SOAP Web Service Requests With ColdFusion And CFHTTP
Ben, you once again saved my bacon at work. Thank you, thank you, thank you! ... read »
May 15, 2013 at 4:15 PM
What If All User Interface (UI) Data Came In Reports?
@Josh, Thanks! @Ben, I definitely recommend the David West book "Object Thinking" I've been quoting from. It goes deeply into the philosophy and history of OO programming. His breadth ... read »
May 15, 2013 at 11:36 AM
Ask Ben: Print Part Of A Web Page With jQuery
I found this helpfull when you need to keep (refresh) the original parent page after closing the iframe child print dialog (Hoping you're not using a form at this time so it won't submit again): On ... read »
May 14, 2013 at 7:13 PM
What If All User Interface (UI) Data Came In Reports?
@Jonah, If there's any books you'd recommend on the subject of domain modelling, I'd love to hear it. I just downloaded the free PDF of "Domain Driven Design Quickly". Figured I'd give it ... read »
May 14, 2013 at 6:57 PM
The UX Of Prototyping: Low-Fidelity Is The New High-Fidelity
@Phillip, I'm not sure I follow what you mean? Are you saying that you looked at the list of widgets provided by the jQuery UI and let that be your style guide? ... read »
InVision App - Prototyping Made Beautiful With Prototyping Tools