2013-06-06 14:03 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)

* src/vm/hashes.c
    ! added missing size update after hash array resorting
This commit is contained in:
Przemysław Czerpak
2013-06-06 14:03:49 +02:00
parent 208734b18e
commit 6d02d64878
2 changed files with 13 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
/*
* $Id: fa525d0b946be0f5210ddf613a5db20f999bd2b0 $
* $Id$
*/
/* Read doc/howtorep.txt and use this format for entry headers:
@@ -10,36 +10,40 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2013-06-06 14:03 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* src/vm/hashes.c
! added missing size update after hash array resorting
2013-06-06 01:56 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbtip/client.prg
! Fixed: to test if a connection is available actually or not
before sending other info. This fixes a RTE when a SSL over
HTTP request was made and internet access was not available.
* contrib/hbtip/httpcli.prg
+ Added: METHOD Head() for HEAD verb of HTTP interface.
METHOD SetConnectionPersistent()
This does not send "Connection: close" header entry.
Useful in cases where many requests are required to
be submitted under one session. :close() may be
called to close the connection explicitly.
METHOD IsConnectionAlive()
It allows the application to test connection's state
and facilitates to take alternate action.
2013-06-05 23:40 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/gtwvg/wvgcore.c
+ Added: function WVT_DRAWPICTUREEX
WVT_LOADPICTUREFROMRESOURCEEX
* contrib/gtwvg/wvgcuig.c
+ Added: function WVG_PICTUREEX
* contrib/gtwvg/wvgwin.c
+ Added: function WVG_FORCEWINDOWTOTOP
2013-06-05 19:15 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* contrib/gtqtc/gtqtc1.cpp
! added workaround for AltGR and German keyboard

View File

@@ -220,6 +220,7 @@ static void hb_hashResort( PHB_BASEHASH pBaseHash )
hb_xfree( pBaseHash->pPairs );
pBaseHash->pPairs = pPairs;
pBaseHash->nSize = pBaseHash->nLen;
}
static void hb_hashSortDo( PHB_BASEHASH pBaseHash )