1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-12 17:30:50 +00:00

Fix an error in ReleaseLiteral.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5967 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2013-01-25 20:39:43 +00:00
parent fa722e351a
commit 63a0813979

View File

@ -6,7 +6,7 @@
/* */ /* */
/* */ /* */
/* */ /* */
/* (C) 1998-2009, Ullrich von Bassewitz */ /* (C) 1998-2013, Ullrich von Bassewitz */
/* Roemerstrasse 52 */ /* Roemerstrasse 52 */
/* D-70794 Filderstadt */ /* D-70794 Filderstadt */
/* EMail: uz@cc65.org */ /* EMail: uz@cc65.org */
@ -169,7 +169,7 @@ void ReleaseLiteral (Literal* L)
/* Decrement the reference counter for the literal */ /* Decrement the reference counter for the literal */
{ {
--L->RefCount; --L->RefCount;
CHECK (L->RefCount >= 0 && (L->RefCount > 0 || !L->Output)); CHECK (L->RefCount >= 0);
} }