Skip to content

Commit

Permalink
Fix memory leak in mlt_repository
Browse files Browse the repository at this point in the history
As reported here:
mltframework#961
  • Loading branch information
bmatherly committed Dec 6, 2023
1 parent c5c199e commit 934c20d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/framework/mlt_repository.c
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,7 @@ void mlt_repository_close(mlt_repository self)
mlt_properties_close(self->consumers);
mlt_properties_close(self->filters);
mlt_properties_close(self->producers);
mlt_properties_close(self->links);
mlt_properties_close(self->transitions);
mlt_properties_close(&self->parent);
free(self);
Expand Down

0 comments on commit 934c20d

Please sign in to comment.