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,314 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,314 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,314 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,314 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
Jun 18, 2013 at 9:20 PM
Mapping AngularJS Routes Onto URL Parameters And Client-Side Events
I couldn't find examples of passing multiple arguments using the when() routing statement so figured out through trial and error that you can pass multiple arguments using the following format: .whe ... read »
Jun 18, 2013 at 3:39 PM
Experimenting With The Amazon Simple Storage Service (S3) API Using ColdFusion
Hi Ben, THANKS! While not bleeding edge, it is new to me & I like learning new things every day! ... read »
Jun 18, 2013 at 12:30 PM
Disabling Auto-Correct And Auto-Capitalize Features On iPhone Inputs
Also spellcheck="false" should be mentioned as part of html5 specs ... read »
Jun 18, 2013 at 8:40 AM
Using Named Functions Within Self-Executing Function Blocks In Javascript
Hi Ben, you forgot to mention the most important thing for named self-executing functions - they can be referenced by name ONLY inside their execution context (which is parens in this case), it mean ... read »
dee
Jun 18, 2013 at 7:01 AM
My Safari Browser SQLite Database Hello World Example
hai ben, this program is really good i could understand the concept but i dint know how to save it and how to open it as you have done in the video can u give that details pls ... read »
Jun 18, 2013 at 6:04 AM
Clearing Inline CSS Properties With jQuery
Thanks a lot for for post! It helped me a lot... after being stuck since 24 hrs.. found solution from your post. Thanks again! ... read »
Jun 18, 2013 at 2:31 AM
SOTR 2013 - The Best Conference I Never Went To
I keep watching it, should keep me happily distracted until SotR14 ;) ... read »
Jun 17, 2013 at 9:45 PM
What If All User Interface (UI) Data Came In Reports?
@Jonah, As I was reading what you wrote, it occurred to me that maybe I do something similar to that in some of my client-side code. In an application I'm working on, there are a bunch of unrelated ... read »
InVision App - Prototyping Made Beautiful With Prototyping Tools