From 8c21dc9a648eb00c53846e07c3a512a06495936b Mon Sep 17 00:00:00 2001
From: Albert Graef <aggraef@gmail.com>
Date: Sun, 11 Apr 2021 01:29:03 +0200
Subject: [PATCH] Remove the outlet in boxed mode which isn't actually used.

---
 externals/pddp/pddplink.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/externals/pddp/pddplink.c b/externals/pddp/pddplink.c
index 2dbd422ab..983ab0c6e 100644
--- a/externals/pddp/pddplink.c
+++ b/externals/pddp/pddplink.c
@@ -409,9 +409,7 @@ static void *pddplink_new(t_symbol *s, int ac, t_atom *av)
     SETSYMBOL(&x->x_openargs[0], x->x_ulink);
     SETSYMBOL(&x->x_openargs[1], x->x_dirsym);
     x->x_ishit = 0;
-    if (x->x_isboxed)
-	outlet_new((t_object *)x, &s_anything);
-    else
+    if (!x->x_isboxed)
     {
 	/* do we need to set ((t_text *)x)->te_type = T_TEXT; ? */
 	if (!x->x_vistext)
-- 
GitLab