From 8d412faf5c240e6a92c526de9f66fbb099b35458 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Mon, 26 Feb 2007 07:43:50 +0000 Subject: [PATCH] fixed an assertion apparently being in the wrong place --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40539 --- sourcepawn/compiler/sctracker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sourcepawn/compiler/sctracker.c b/sourcepawn/compiler/sctracker.c index b3bbc1a9..e0617c47 100644 --- a/sourcepawn/compiler/sctracker.c +++ b/sourcepawn/compiler/sctracker.c @@ -410,8 +410,8 @@ void popstacklist(int codegen) if (codegen) { _stack_genusage(stackusage, 1); + assert(stackusage->head==NULL); } - assert(stackusage->head==NULL); oldlist = stackusage->prev; free(stackusage);