bugfix assert

This commit is contained in:
Enno Rehling 2005-11-25 23:15:52 +00:00
parent 33ec0e321b
commit 4157bfbea2
1 changed files with 1 additions and 2 deletions

View File

@ -35,11 +35,10 @@ variant
opstack_pop(opstack ** stackp) opstack_pop(opstack ** stackp)
{ {
opstack * stack = *stackp; opstack * stack = *stackp;
variant v = *(--stack->top);
assert(stack); assert(stack);
assert(stack->top>stack->begin); assert(stack->top>stack->begin);
return v; return *(--stack->top);
} }
void void