2014-02-05 19:39 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* contrib/hbct/ctwin.c
! added protection against wrong parameters passed to hb_gtAllert()
It fixes #41 issue.
This commit is contained in:
@@ -10,6 +10,11 @@
|
||||
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
|
||||
*/
|
||||
|
||||
2014-02-05 19:39 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
|
||||
* contrib/hbct/ctwin.c
|
||||
! added protection against wrong parameters passed to hb_gtAllert()
|
||||
It fixes #41 issue.
|
||||
|
||||
2014-02-03 23:06 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
|
||||
* contrib/hbmzip/3rd/minizip/*
|
||||
* updated MINIZIP library 1.2.7 -> 1.2.8
|
||||
|
||||
@@ -2114,9 +2114,8 @@ static int hb_ctw_gt_Alert( PHB_GT pGT, PHB_ITEM pMessage, PHB_ITEM pOptions,
|
||||
|
||||
HB_TRACE( HB_TR_DEBUG, ( "hb_ctw_gt_Alert(%p,%p,%p,%d,%d,%f)", pGT, pMessage, pOptions, iClrNorm, iClrHigh, dDelay ) );
|
||||
|
||||
iOptions = ( int ) hb_arrayLen( pOptions );
|
||||
|
||||
if( HB_IS_STRING( pMessage ) && iOptions > 0 )
|
||||
if( pMessage && HB_IS_STRING( pMessage ) &&
|
||||
pOptions && ( iOptions = ( int ) hb_arrayLen( pOptions ) ) > 0 )
|
||||
{
|
||||
int iRows, iCols;
|
||||
HB_BOOL fScreen;
|
||||
|
||||
Reference in New Issue
Block a user