Update of /cvsroot/pure-data/pd/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31561/pd/src
Modified Files: makefile x_connective.c Log Message: fixed memory leak in pa_mac_core.c and the bug sending "bang" to "t s" object
Index: makefile =================================================================== RCS file: /cvsroot/pure-data/pd/src/makefile,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** makefile 15 Sep 2005 03:17:27 -0000 1.20 --- makefile 6 Nov 2005 01:49:43 -0000 1.21 *************** *** 20,24 **** LIB = -ldl -lpthread -lasound
! OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer WARN_CFLAGS = -Wall -W -Wstrict-prototypes \ -Wno-unused -Wno-parentheses -Wno-switch --- 20,24 ---- LIB = -ldl -lpthread -lasound
! OPT_CFLAGS = -g WARN_CFLAGS = -Wall -W -Wstrict-prototypes \ -Wno-unused -Wno-parentheses -Wno-switch
Index: x_connective.c =================================================================== RCS file: /cvsroot/pure-data/pd/src/x_connective.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** x_connective.c 24 Jul 2005 19:41:15 -0000 1.7 --- x_connective.c 6 Nov 2005 01:49:43 -0000 1.8 *************** *** 979,983 **** outlet_bang(u->u_outlet); else if (u->u_type == TR_SYMBOL) ! outlet_symbol(u->u_outlet, (argc ? atom_getsymbol(argv) : 0)); else if (u->u_type == TR_POINTER) { --- 979,984 ---- outlet_bang(u->u_outlet); else if (u->u_type == TR_SYMBOL) ! outlet_symbol(u->u_outlet, ! (argc ? atom_getsymbol(argv) : &s_symbol)); else if (u->u_type == TR_POINTER) {