fixed potential crash bug with empty (padding) element buttons in editor
authorHolger Schemel <info@artsoft.org>
Sat, 1 Dec 2018 10:41:54 +0000 (11:41 +0100)
committerHolger Schemel <info@artsoft.org>
Sat, 1 Dec 2018 10:41:54 +0000 (11:41 +0100)
commitb77c449c5eb0d244bd0367746ce45da07b89e38a
treee169ebbb5a68b1b99ced523d8e408c1478e20e3f
parent6229b51a03a4113fa799587e0f58fcea0f634d41
fixed potential crash bug with empty (padding) element buttons in editor

This fixes a bug that can cause a crash when accessing memory that was
already free()'ed again, because the variable that contains the amount
of allocated memory is not updated when memory allocation changes.

The bug is fixed by updating that variable when memory is allocated.
src/editor.c