From ea9fdaceba9bc9dc8b66d2ac62889a12b9ed426e Mon Sep 17 00:00:00 2001
From: Ivica Ico Bukvic <ico@vt.edu>
Date: Thu, 6 Dec 2012 00:20:16 -0500
Subject: [PATCH] potential bug-fix to the preset engine

---
 pd/src/x_preset.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pd/src/x_preset.c b/pd/src/x_preset.c
index cc4c220f3..70f4d2bc0 100644
--- a/pd/src/x_preset.c
+++ b/pd/src/x_preset.c
@@ -807,6 +807,7 @@ void preset_hub_store(t_preset_hub *h, t_float f)
 							np1->np_next = np2;
 						else hd1->phd_npreset = np2;
 						np2->np_preset = (int)f;
+						np2->np_next = NULL;
 					}
 
 					if (hd1->phd_node->pn_val.l_n > 0) {
@@ -1170,6 +1171,7 @@ static void *preset_hub_new(t_symbol *s, int argc, t_atom *argv)
 		gl_phub->ph_next = x;
 	}
 	x->ph_next = NULL;
+	x->ph_data = NULL;
 
 	hd1 = NULL;
 	hd2 = NULL;
-- 
GitLab