Skip to content

Commit

Permalink
improve variable scope
Browse files Browse the repository at this point in the history
  • Loading branch information
pierreguillot committed Jul 26, 2018
1 parent 44c1a9d commit baf544c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/faust_tilde_options.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ static void faust_opt_manager_free_compile_options(t_faust_opt_manager *x)

char faust_opt_manager_parse_compile_options(t_faust_opt_manager *x, size_t const argc, const t_atom* argv)
{
size_t i;
char has_include = 0;
faust_opt_manager_free_compile_options(x);
x->f_options = getbytes(argc * sizeof(char *));
if(x->f_options)
{
size_t i;
for(i = 0; i < argc; ++i)
{
x->f_options[i] = (char *)getbytes(MAXFAUSTSTRING * sizeof(char));
Expand Down

0 comments on commit baf544c

Please sign in to comment.