From 8bf8f6450e11a23f2f5418c36f886fceabb59916 Mon Sep 17 00:00:00 2001
From: Jonathan Wilkes <jon.w.wilkes@gmail.com>
Date: Sun, 9 Jul 2017 17:43:48 -0400
Subject: [PATCH] fix error where the "$@" variable was overwriting the bounds
 variable for the loop used to check for its existence

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

diff --git a/pd/src/m_binbuf.c b/pd/src/m_binbuf.c
index 9d3582a8d..5686f2984 100644
--- a/pd/src/m_binbuf.c
+++ b/pd/src/m_binbuf.c
@@ -688,8 +688,8 @@ void binbuf_eval(t_binbuf *x, t_pd *target, int argc, t_atom *argv)
 
     //first we need to check if the list of arguments has $@
     //fprintf(stderr,"=========\nbinbuf_eval argc:%d ac:%d\n", argc, (int)ac);
-    int count;
-    for (count = 0; count < ac; count++)
+    int count, old_ac = ac;
+    for (count = 0; count < old_ac; count++)
     {
         //fprintf(stderr, "count %d\n", count);
         if (at[count].a_type == A_DOLLAR &&
-- 
GitLab