diff options
Diffstat (limited to 'pd/src/m_atom.c')
-rw-r--r-- | pd/src/m_atom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pd/src/m_atom.c b/pd/src/m_atom.c index 95e2216c..f8859c6f 100644 --- a/pd/src/m_atom.c +++ b/pd/src/m_atom.c @@ -120,7 +120,7 @@ void atom_string(t_atom *a, char *buf, unsigned int bufsize) sprintf(buf, "$%d", a->a_w.w_index); break; case A_DOLLSYM: - snprintf(buf, bufsize-1, "%s", a->a_w.w_symbol->s_name); + strncpy(buf, a->a_w.w_symbol->s_name, bufsize); buf[bufsize-1] = 0; break; default: |