Skip to content

Commit

Permalink
Merge pull request #333 from nowls/qs1dsearch-free
Browse files Browse the repository at this point in the history
qs1dsearch: free object in _destroy
  • Loading branch information
jgaeddert committed Sep 10, 2023
2 parents 017622b + 9653f64 commit 000f96c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/optim/src/qs1dsearch.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ qs1dsearch qs1dsearch_copy(qs1dsearch _q)

int qs1dsearch_destroy(qs1dsearch _q)
{
free(_q);
return LIQUID_OK;
}

Expand Down

0 comments on commit 000f96c

Please sign in to comment.