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:
@@ -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>
|
||||
|
||||
@@ -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';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user