diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 0bfda051d4..2218160c9f 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,10 @@ The license applies to all entries newer than 2009-04-28. */ +2011-01-19 07:21 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/include/hbexpra.c + ! fixed casting for C++ mode + 2011-01-18 22:27 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/include/hbexpra.c * harbour/include/hbexprb.c diff --git a/harbour/include/hbexpra.c b/harbour/include/hbexpra.c index f53c407027..4d95e24b58 100644 --- a/harbour/include/hbexpra.c +++ b/harbour/include/hbexpra.c @@ -338,7 +338,7 @@ HB_EXPR_PTR hb_compExprNewFunCall( HB_EXPR_PTR pName, HB_EXPR_PTR pParms, HB_COM { if( !pVar->value.asString.dealloc ) { - szVar = pVar->value.asString.string = + szVar = pVar->value.asString.string = ( char * ) hb_xmemdup( pVar->value.asString.string, i + 1 ); pVar->value.asString.dealloc = HB_TRUE; }