2016-05-04 15:50 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* src/rtl/hbsocket.c
! fixed very bad typo which caused buffer overflow on 32bit
platforms using poll() instead of select() in hb_socketSelect()
This commit is contained in:
@@ -10,6 +10,11 @@
|
||||
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
|
||||
*/
|
||||
|
||||
2016-05-04 15:50 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
|
||||
* src/rtl/hbsocket.c
|
||||
! fixed very bad typo which caused buffer overflow on 32bit
|
||||
platforms using poll() instead of select() in hb_socketSelect()
|
||||
|
||||
2016-05-04 13:29 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
|
||||
* src/rtl/gtwin/gtwin.c
|
||||
! strip ALT+CTRL and ALTGR from extended keycode when these modifiers
|
||||
|
||||
@@ -3044,7 +3044,7 @@ int hb_socketSelect( PHB_ITEM pArrayRD, HB_BOOL fSetRD,
|
||||
}
|
||||
|
||||
if( ncnt > 0 )
|
||||
pfds = ( struct pollfd * ) hb_xgrab( ncnt * sizeof( struct pollfd * ) );
|
||||
pfds = ( struct pollfd * ) hb_xgrab( ncnt * sizeof( struct pollfd ) );
|
||||
|
||||
for( i = 0; i < 3; i++ )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user