see changelog

This commit is contained in:
Eddie Runia
1999-06-17 11:25:12 +00:00
parent b792edd136
commit 7d85392e66
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
19990617-12:20 CET Eddie Runia
* source/compiler/harbour.y
GetLocalVarPos : OurMalloc( sizeof(PVAR) ) should be sizeof(VAR)
19990617-02:15 EDT David G. Holm <dholm@jsd-llc.com>
* include/extend.api
- Moved fixed memory functions to fm.api

View File

@@ -2697,7 +2697,7 @@ int GetLocalVarPos( char * szVarName ) /* returns the order + 1 of a variable if
/* this variable was not referenced yet - add it to the list */
PVAR pVar;
pVar = (PVAR) OurMalloc( sizeof(PVAR) );
pVar = (PVAR) OurMalloc( sizeof(VAR) );
pVar->szName = szVarName;
//pVar->cType = 'U';
pVar->iUsed = 0;