From 00a89d96dbf652450e7ef8cb3c63425e8c17e827 Mon Sep 17 00:00:00 2001
From: Jonathan Wilkes <jon.w.wilkes@gmail.com>
Date: Mon, 4 Mar 2019 21:42:31 -0500
Subject: [PATCH] reduce stack size by one order of magnitude

---
 pd/src/m_obj.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pd/src/m_obj.c b/pd/src/m_obj.c
index 04ca9f201..17d52e022 100644
--- a/pd/src/m_obj.c
+++ b/pd/src/m_obj.c
@@ -335,7 +335,7 @@ void obj_init(void)
 /* --------------------------- outlets ------------------------------ */
 
 static int stackcount = 0; /* iteration counter */
-#define STACKITER 10000 /* maximum iterations allowed */
+#define STACKITER 1000 /* maximum iterations allowed */
 
 static int outlet_eventno;
 
-- 
GitLab