2000-07-30 21:15 UTC+0800 Ron Pinkas <ron@profit-master.com>

* source/macro/macro.slx
    ! Corrected 1 unreleased memory block.

  * source/compiler/harbour.slx
    - Removed unneeded comment.

  * source/compiler/simplex.c
    * Changed void yy_bytes_buffer() to void *.
This commit is contained in:
Ron Pinkas
2000-07-31 04:17:09 +00:00
parent 4508a88846
commit 1207146d98
3 changed files with 12 additions and 3 deletions

View File

@@ -1,3 +1,13 @@
2000-07-30 21:15 UTC+0800 Ron Pinkas <ron@profit-master.com>
* source/macro/macro.slx
! Corrected 1 unreleased memory block.
* source/compiler/harbour.slx
- Removed unneeded comment.
* source/compiler/simplex.c
* Changed void yy_bytes_buffer() to void *.
2000-07-31 00:10 GMT -3 Luiz Rafael Culik <culik@sl.conex.net>
*contrib/hbzlib/zipfile2.c

View File

@@ -1022,8 +1022,6 @@ LANGUAGE_RULES_ARE {
else if( yytext[0] == '0' && yytext[1] == 'X' )\
{\
long lNumber = hb_lex_Hex2L( yytext + 2 );\
\
/* sscanf( yytext, "%lxI", &lNumber );*/\
\
if( ( double ) SHRT_MIN <= lNumber && lNumber <= ( double ) SHRT_MAX )\
{\

View File

@@ -1335,8 +1335,9 @@ int Reduce( int iToken, BOOL bReal )
iSize = 0;
}
void yy_bytes_buffer( char * pBuffer, int iBufSize )
void * yy_bytes_buffer( char * pBuffer, int iBufSize )
{
s_szBuffer = pBuffer;
iSize = iBufSize;
return s_szBuffer;
}