2010-05-12 14:30 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/contrib/hbnetio/netiosrv.c
    ! fixed yet another typo located by Aleksander Czajczyki which
      caused internal error (hb_xfree() with NULL pointer)
This commit is contained in:
Przemyslaw Czerpak
2010-05-12 12:30:27 +00:00
parent 604cce1812
commit 071313e56e
2 changed files with 6 additions and 1 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-05-12 14:30 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/contrib/hbnetio/netiosrv.c
! fixed yet another typo located by Aleksander Czajczyki which
caused internal error (hb_xfree() with NULL pointer)
2010-05-12 12:10 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/contrib/hbnetio/netiosrv.c
! fixed typo in NETIO_SRVSTATUS() - -2 was always returned

View File

@@ -1206,7 +1206,7 @@ HB_FUNC( NETIO_SERVER )
if( stream->id == iStreamID )
{
conn->streams = stream->next;
hb_xfree( conn->streams );
hb_xfree( stream );
}
hb_threadMutexUnlock( conn->mutex );
}