From fd6fc182230d0440fc698e118514dd635c533fc8 Mon Sep 17 00:00:00 2001 From: Miller Puckette Date: Thu, 24 Aug 2006 15:23:52 +0000 Subject: sync for pd 0.40-0test05. Bug fix (empty DSP chains crashed Pd). svn path=/trunk/; revision=5730 --- pd/src/x_connective.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pd/src/x_connective.c') diff --git a/pd/src/x_connective.c b/pd/src/x_connective.c index c50e27c8..3b2bbba5 100644 --- a/pd/src/x_connective.c +++ b/pd/src/x_connective.c @@ -234,6 +234,8 @@ static void send_anything(t_send *x, t_symbol *s, int argc, t_atom *argv) static void *send_new(t_symbol *s) { t_send *x = (t_send *)pd_new(send_class); + if (!*s->s_name) + symbolinlet_new(&x->x_obj, &x->x_sym); x->x_sym = s; return (x); } -- cgit v1.2.1