Skip to content

Commit

Permalink
silence gcc4.8 erroneously reporting uninitialized vars
Browse files Browse the repository at this point in the history
  • Loading branch information
derselbst committed May 20, 2018
1 parent 8d33845 commit d0d156f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rvoice/fluid_rvoice_mixer.c
Original file line number Diff line number Diff line change
Expand Up @@ -801,8 +801,8 @@ fluid_mixer_thread_func (void* data)
fluid_rvoice_mixer_t* mixer = buffers->mixer;
int hasValidData = 0;
FLUID_DECLARE_VLA(fluid_real_t*, bufs, buffers->buf_count*2 + buffers->fx_buf_count*2);
int bufcount;
int current_blockcount;
int bufcount=0;
int current_blockcount=0;
fluid_real_t* local_buf = fluid_align_ptr(buffers->local_buf, FLUID_DEFAULT_ALIGNMENT);

while (!fluid_atomic_int_get(&mixer->threads_should_terminate)) {
Expand Down

0 comments on commit d0d156f

Please sign in to comment.