Skip to content

Commit

Permalink
Merge pull request #638 from timothyschoen/patch-5
Browse files Browse the repository at this point in the history
Fixed crash in zl.c
  • Loading branch information
porres authored Feb 4, 2024
2 parents eecd71b + 295ea70 commit a4e5a55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cyclone_objects/binaries/control/zl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1713,7 +1713,7 @@ CYCLONE_OBJ_API void zl_setup(void){
{ \
int ac = argc + 1; \
t_atom* av = malloc(ac * sizeof(t_atom)); \
memcpy(av + sizeof(t_atom), argv, argc * sizeof(t_atom)); \
memcpy(av + 1, argv, argc * sizeof(t_atom)); \
SETSYMBOL(av, gensym(#MODE)); \
return zl_new(s, ac, av); \
} \
Expand Down

0 comments on commit a4e5a55

Please sign in to comment.