Skip to content

Commit

Permalink
Merge branch 'main' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
smarco committed Aug 11, 2023
2 parents 0c6de10 + feb2e31 commit 8be34e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wavefront/wavefront_sequences.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void wavefront_sequences_init_allocate(
if (wf_sequences->seq_buffer != NULL) free(wf_sequences->seq_buffer);
// Allocate
const int proposed_size = buffer_size + buffer_size/2;
wf_sequences->seq_buffer = malloc(proposed_size);
wf_sequences->seq_buffer = calloc(proposed_size, 1);
wf_sequences->seq_buffer_allocated = proposed_size;
}
// Assign memory
Expand Down

0 comments on commit 8be34e0

Please sign in to comment.