2009-11-03 13:36 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/common/hbstr.c
! fixed typo in HB_TRACE message - problem reported by Alex
* harbour/src/rtl/cdpapi.c
! fixed casting for C++ builds - problem reported by Marcos
This commit is contained in:
@@ -17,6 +17,13 @@
|
||||
past entries belonging to author(s): Viktor Szakats.
|
||||
*/
|
||||
|
||||
2009-11-03 13:36 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
* harbour/src/common/hbstr.c
|
||||
! fixed typo in HB_TRACE message - problem reported by Alex
|
||||
|
||||
* harbour/src/rtl/cdpapi.c
|
||||
! fixed casting for C++ builds - problem reported by Marcos
|
||||
|
||||
2009-11-02 12:29 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
|
||||
* harbour/src/rtl/cdpapi.c
|
||||
* harbour/include/hbapicdp.h
|
||||
|
||||
@@ -819,7 +819,7 @@ char * hb_strncat( char * pDest, const char * pSource, ULONG ulLen )
|
||||
{
|
||||
char *pBuf = pDest;
|
||||
|
||||
HB_TRACE(HB_TR_DEBUG, ("hb_strncpy(%p, %s, %lu)", pDest, pSource, ulLen));
|
||||
HB_TRACE(HB_TR_DEBUG, ("hb_strncat(%p, %s, %lu)", pDest, pSource, ulLen));
|
||||
|
||||
pDest[ ulLen ] = '\0';
|
||||
|
||||
|
||||
@@ -1056,7 +1056,7 @@ char * hb_cdpU16ToStr( PHB_CODEPAGE cdp, BOOL fCtrl,
|
||||
else
|
||||
{
|
||||
ulDst = ulLen + 1;
|
||||
pDst = hb_xgrab( ulDst );
|
||||
pDst = ( char * ) hb_xgrab( ulDst );
|
||||
}
|
||||
|
||||
for( ul = 0; ul < ulLen && ul < ulDst; ++ul )
|
||||
@@ -1102,7 +1102,7 @@ char * hb_cdpU16LEToStr( PHB_CODEPAGE cdp, BOOL fCtrl,
|
||||
else
|
||||
{
|
||||
ulDst = ulLen + 1;
|
||||
pDst = hb_xgrab( ulDst );
|
||||
pDst = ( char * ) hb_xgrab( ulDst );
|
||||
}
|
||||
|
||||
for( ul = 0; ul < ulLen && ul < ulDst; ++ul )
|
||||
|
||||
Reference in New Issue
Block a user