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 committed Oct 24, 2024
1 parent 27f20f8 commit eb54d82
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 eb54d82

Please sign in to comment.