diff --git a/ChangeLog.txt b/ChangeLog.txt index d0684cbb7a..56cc4d23a3 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -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 diff --git a/src/vm/hashes.c b/src/vm/hashes.c index 53943ab566..e7eea56674 100644 --- a/src/vm/hashes.c +++ b/src/vm/hashes.c @@ -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 )