From dcc1b4deab32a2a57422064a783e52b2a3119c4d Mon Sep 17 00:00:00 2001
From: Jonathan Wilkes <jon.w.wilkes@gmail.com>
Date: Fri, 3 Jun 2016 11:45:54 -0400
Subject: [PATCH]  Vanilla 0.47 backport 7: g_scalar.c

---
 pd/src/g_scalar.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/pd/src/g_scalar.c b/pd/src/g_scalar.c
index 9963a79fe..3f1ace699 100644
--- a/pd/src/g_scalar.c
+++ b/pd/src/g_scalar.c
@@ -103,6 +103,11 @@ void word_init(t_word *data, t_template *template, t_gpointer *gp)
             post("eval'd a canvas with addy x%lx", (long unsigned int)
                 wp->w_list);
         }
+        else if (type == DT_TEXT)
+        {
+            // Miller's [text] object addition
+            wp->w_binbuf = binbuf_new();
+        }
     }
 }
 
@@ -167,6 +172,8 @@ void word_free(t_word *wp, t_template *template)
             array_free(wp[i].w_array);
         else if (dt->ds_type == DT_LIST)
             canvas_free(wp[i].w_list);
+        else if (dt->ds_type == DT_TEXT)
+            binbuf_free(wp[i].w_binbuf);
     }
 }
 
-- 
GitLab