2017-05-04 14:48 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)

* src/compiler/hbcomp.c
    ! restored protection against multiple free of the same expression
      I removed by mistake in one of my recent commits.
This commit is contained in:
Przemysław Czerpak
2017-05-04 14:48:39 +02:00
parent a69b4a58ee
commit 4858d23510
2 changed files with 7 additions and 0 deletions

View File

@@ -10,6 +10,11 @@
* Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment
*/
2017-05-04 14:48 UTC+0200 Przemyslaw Czerpak (druzus/at/poczta.onet.pl)
* src/compiler/hbcomp.c
! restored protection against multiple free of the same expression
I removed by mistake in one of my recent commits.
2017-05-03 09:10 UTC Viktor Szakats (vszakats users.noreply.github.com)
* *
* copyright name cleanups

View File

@@ -82,6 +82,8 @@ static void hb_compExprDealloc( HB_COMP_DECL, PHB_EXPR pExpr )
}
hb_xfree( pExpItm );
}
else
pExpr->ExprType = HB_ET_NONE;
}
static PHB_EXPR hb_compExprNew( HB_COMP_DECL, HB_EXPRTYPE iType )