Update of /cvsroot/pure-data/externals/zexy/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20444
Modified Files: unpack.c Log Message: removed unused code
Index: unpack.c =================================================================== RCS file: /cvsroot/pure-data/externals/zexy/src/unpack.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** unpack.c 10 May 2007 13:21:21 -0000 1.1 --- unpack.c 21 May 2007 11:58:17 -0000 1.2 *************** *** 31,35 **** t_object x_obj; t_outlet**x_out; - t_int*x_index; t_int x_numouts; } t_zunpack; --- 31,34 ---- *************** *** 56,64 **** outlet_free(x->x_out[i]); } - freebytes(x->x_index, x->x_numouts*sizeof(t_int)); freebytes(x->x_out, x->x_numouts*sizeof(t_outlet*));
x->x_numouts=0; - x->x_index=0; x->x_out=0; } --- 55,61 ---- *************** *** 71,83 ****
x->x_numouts=count; - x->x_index=(t_int*) getbytes(count*sizeof(t_int)); x->x_out=(t_outlet**)getbytes(count*sizeof(t_outlet*));
for(i=0; i<count; i++) { x->x_out[i] =outlet_new(&x->x_obj, 0); - x->x_index[i]=count; - if(i<argc && argv[i].a_type == A_FLOAT) { - x->x_index[i]=atom_getint(argv+i); - } }
--- 68,75 ----