diff --git a/ChangeLog.txt b/ChangeLog.txt index ba65cb8294..e52c98eab7 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -7,6 +7,10 @@ Entries may not always be in chronological/commit order. See license at the end of file. */ +2019-01-25 12:26 UTC+0100 Przemyslaw Czerpak (druzus/at/poczta.onet.pl) + * contrib/xhb/hbxml.c + ! fixed memory leak + 2019-01-15 12:50 UTC+0100 Aleksander Czajczynski (hb fki.pl) * README.md * verified links to referenced libraries, go https where applicable. @@ -28,25 +32,23 @@ 2019-01-14 12:18 UTC-0800 Pritpal Bedi (bedipritpal/at/hotmail.com) * contrib/gtwvg/wnd.prg - ! Fixed: x,y,w,h values if aPos and aSize parameters were - containing negatve values. - + ! Fixed: x,y,w,h values if aPos and aSize parameters were + containing negatve values. * contrib/gtwvg/paint.prg - ! Fixed to return proper color index if a compound color string - is supplied to wvt_GetRGBColorByString(). - - ; Above patch provided by Jose Quintas - many thanks. + ! Fixed to return proper color index if a compound color string + is supplied to wvt_GetRGBColorByString(). + ; Above patch provided by Jose Quintas - many thanks. 2019-01-11 13:52 UTC-0800 Pritpal Bedi (bedipritpal/at/hotmail.com) * contrib/gtwvg/wnd.prg * contrib/gtwvg/activex.prg - ! modified to honor plain hWnd as container window instead of an + ! modified to honor plain hWnd as container window instead of an WvgWnd() object. * contrib/gtwvg/gtwvgd.c + added - HB_GTI_VIEWPORTHEIGHT and HB_GTI_VIEWPORTWIDTH handelling. ! Pacified some warnings reported by BCC-720. - * contrib/gtwvg/wvgcore.c - * contrib/gtwvg/wvgcuig.c + * contrib/gtwvg/wvgcore.c + * contrib/gtwvg/wvgcuig.c ! Pacified some warnings reported by BCC-720. 2018-12-31 15:32 UTC+0100 Maurizio la Cecilia (m.lacecilia/at/gmail.com) diff --git a/contrib/xhb/hbxml.c b/contrib/xhb/hbxml.c index 52a35679b7..21aa12202f 100644 --- a/contrib/xhb/hbxml.c +++ b/contrib/xhb/hbxml.c @@ -538,6 +538,7 @@ static void mxml_node_insert_before( PHB_ITEM pTg, PHB_ITEM pNode ) hb_objSendMsg( pPrev, "_ONEXT", 1, pNode ); } } + hb_itemRelease( pPrev ); /* tg->prev is now pnode! */ hb_objSendMsg( pTg, "_OPREV", 1, pNode );