2013-09-20 15:30 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)

* src/rtl/hbgtcore.c
    ! added explicit casting to strchr() result
This commit is contained in:
Przemysław Czerpak
2013-09-20 15:30:45 +02:00
parent ff6d11c1d5
commit c5db5dac72
2 changed files with 6 additions and 2 deletions

View File

@@ -10,6 +10,10 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2013-09-20 15:30 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* src/rtl/hbgtcore.c
! added explicit casting to strchr() result
2013-09-19 09:52 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* src/rtl/hbgtcore.c
+ added support for GT parameters passed in //GT<NAME>

View File

@@ -3879,8 +3879,8 @@ static HB_BOOL hb_gtTryInit( const char * szGtName, HB_BOOL fFree )
{
if( fFree )
{
char * pszStr;
if( ( pszStr = strchr( szGtName, ':' ) ) != NULL )
char * pszStr = ( char * ) strchr( szGtName, ':' );
if( pszStr != NULL )
* pszStr = '\0';
}