Skip to content

Commit

Permalink
Fix abort on delete plugin from track FX.
Browse files Browse the repository at this point in the history
  • Loading branch information
Javantea authored and abique committed Nov 1, 2024
1 parent 16ea91a commit 1d35ca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugin-template.c
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ static void entry_deinit_guard(void) {
#endif

const int cnt = --g_entry_init_counter;
assert(cnt > 0);
assert(cnt >= 0);

bool succeed = true;
if (cnt == 0)
Expand Down

0 comments on commit 1d35ca1

Please sign in to comment.