2014-04-02 22:52 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)

* contrib/hbnetio/netiosrv.c
    ! fixed very bad bug in one of recent modifications which completely
      broke all servers using early authentication by netio_VerifyClient()
This commit is contained in:
Przemysław Czerpak
2014-04-02 22:52:09 +02:00
parent 6277cb38ff
commit bf2a912c0e
2 changed files with 6 additions and 3 deletions

View File

@@ -10,6 +10,11 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2014-04-02 22:52 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* contrib/hbnetio/netiosrv.c
! fixed very bad bug in one of recent modifications which completely
broke all servers using early authentication by netio_VerifyClient()
2014-04-02 12:46 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* src/rtl/filebufd.c
* src/rtl/iousr.c

View File

@@ -746,11 +746,9 @@ static HB_BOOL s_netio_login_accept( PHB_CONSRV conn )
}
if( ! conn->login )
s_consrv_disconnect( conn );
return conn->login;
}
return HB_FALSE;
return conn && conn->login;
}
/* netio_VerifyClient( <pConnectionSocket> ) -> <lAccepted>