aboutsummaryrefslogtreecommitdiff
path: root/pd/src
diff options
context:
space:
mode:
authorMiller Puckette <millerpuckette@users.sourceforge.net>2005-11-06 01:49:43 +0000
committerMiller Puckette <millerpuckette@users.sourceforge.net>2005-11-06 01:49:43 +0000
commitd07b14f65ef68368d6434f7d0d33892863db84c7 (patch)
tree6f4d23d006fd43e72fdc0cab0618d1788687f110 /pd/src
parent62e46e35ccb9af60be1c3aceb0c263546930ccfe (diff)
fixed memory leak in pa_mac_core.c and the bug sending "bang" to "t s" object
svn path=/trunk/; revision=3842
Diffstat (limited to 'pd/src')
-rw-r--r--pd/src/makefile2
-rw-r--r--pd/src/x_connective.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/pd/src/makefile b/pd/src/makefile
index 433bbb6c..2ad50698 100644
--- a/pd/src/makefile
+++ b/pd/src/makefile
@@ -19,7 +19,7 @@ GLIB = -ltk8.4 -ltcl8.4
LDFLAGS = -Wl,-export-dynamic -lasound
LIB = -ldl -lpthread -lasound
-OPT_CFLAGS = -O6 -funroll-loops -fomit-frame-pointer
+OPT_CFLAGS = -g
WARN_CFLAGS = -Wall -W -Wstrict-prototypes \
-Wno-unused -Wno-parentheses -Wno-switch
ARCH_CFLAGS = -DPD
diff --git a/pd/src/x_connective.c b/pd/src/x_connective.c
index 3d62b319..c50e27c8 100644
--- a/pd/src/x_connective.c
+++ b/pd/src/x_connective.c
@@ -978,7 +978,8 @@ static void trigger_list(t_trigger *x, t_symbol *s, int argc, t_atom *argv)
else if (u->u_type == TR_BANG)
outlet_bang(u->u_outlet);
else if (u->u_type == TR_SYMBOL)
- outlet_symbol(u->u_outlet, (argc ? atom_getsymbol(argv) : 0));
+ outlet_symbol(u->u_outlet,
+ (argc ? atom_getsymbol(argv) : &s_symbol));
else if (u->u_type == TR_POINTER)
{
if (!argc || argv->a_type != TR_POINTER)