Skip to content

Commit

Permalink
Fixed possible buffer overrun
Browse files Browse the repository at this point in the history
  • Loading branch information
grrrr committed Mar 20, 2020
1 parent 5677ee2 commit 770fd99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/play.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ xplay::xplay(int argc,const t_atom *argv)

AddInSignal("Messages and Signal of playing position"); // pos signal
for(int ci = 0; ci < outchns; ++ci) {
char tmp[30];
char tmp[60];
STD::sprintf(tmp,"Audio signal channel %i",ci+1);
AddOutSignal(tmp);
}
Expand Down

0 comments on commit 770fd99

Please sign in to comment.