2009-11-09 13:23 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/src/rtl/cdpapi.c
    ! fixed very bad typo in new CDP API code - hb_cdpnDup2() was not updating
      original string size. This bug was critical for RDDs.
This commit is contained in:
Przemyslaw Czerpak
2009-11-09 12:23:48 +00:00
parent fe8e42108b
commit 75f58f012f
2 changed files with 6 additions and 1 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-11-09 13:23 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/rtl/cdpapi.c
! fixed very bad typo in new CDP API code - hb_cdpnDup2() was not updating
original string size. This bug was critical for RDDs.
2009-11-08 12:45 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/gtwvg/wvgtoolb.prg
* contrib/gtwvg/wvgutils.c

View File

@@ -1361,7 +1361,7 @@ const char * hb_cdpnDup2( const char * pSrc, ULONG ulSrc,
char * pDst, ULONG * pulDst,
PHB_CODEPAGE cdpIn, PHB_CODEPAGE cdpOut )
{
hb_cdpTransTo( pSrc, ulSrc, pDst, *pulDst, cdpIn, cdpOut );
* pulDst = hb_cdpTransTo( pSrc, ulSrc, pDst, *pulDst, cdpIn, cdpOut );
return pDst;
}