diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-10-14 10:01:34 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2005-10-14 10:01:34 +0000 |
commit | eab6ccae9b0934355104af5fb1dbfc02c8eb3e45 (patch) | |
tree | 5f810bf52324a141fd91c144c3560934936bf493 /src | |
parent | 01e44dc1fd936498399d3bd39b1e8d87b9fc97fb (diff) |
found and fixed bug in object-destruction
svn path=/trunk/externals/iem/iemmatrix/; revision=3709
Diffstat (limited to 'src')
-rw-r--r-- | src/mtx_fill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mtx_fill.c b/src/mtx_fill.c index fb97041..400c217 100644 --- a/src/mtx_fill.c +++ b/src/mtx_fill.c @@ -52,7 +52,7 @@ static void deleteMTXFill (MTXfill *mtx_fill_obj) if (mtx_fill_obj->list_out) freebytes (mtx_fill_obj->list_out, sizeof(t_atom)*(mtx_fill_obj->size+2)); if (mtx_fill_obj->index) - freebytes (mtx_fill_obj->list_out, sizeof(int)*(mtx_fill_obj->index_size)); + freebytes (mtx_fill_obj->index, sizeof(int)*(mtx_fill_obj->index_size)); } static void setListConstFloat (int size, t_float f, t_atom *y) |