2001-04-09 02:20 UTC-0800 Brian Hays <bhays@abacuslaw.com>

This commit is contained in:
Brian Hays
2001-04-09 21:15:26 +00:00
parent 70519acca5
commit 805e00fbab
2 changed files with 9 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2001-04-09 02:20 UTC-0800 Brian Hays <bhays@abacuslaw.com>
* source/compiler/genc.c
* Posted a fix from Ron to pDeclared handling
2001-04-09 12:30 UTC-0800 Brian Hays <bhays@abacuslaw.com>
* contrib/rdd_ads/ads1.c
* added scope optimization to DBOI_KEYCOUNT

View File

@@ -282,7 +282,11 @@ void hb_compGenCCode( PHB_FNAME pFileName ) /* generates the C language ou
pInline = hb_comp_inlines.pFirst;
}
pDeclared = hb_comp_pReleaseDeclared->pNext;
if ( hb_comp_pReleaseDeclared )
pDeclared = hb_comp_pReleaseDeclared->pNext;
else
pDeclared = NULL;
while( pDeclared )
{
hb_comp_pFirstDeclared = pDeclared->pNext;