diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/jalv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -433,7 +433,7 @@ jack_process_cb(jack_nframes_t nframes, void* data) jalv_worker_emit_responses(host, &host->worker); /* Notify the plugin the run() cycle is finished */ - if (host->worker.iface->end_run) { + if (host->worker.iface && host->worker.iface->end_run) { host->worker.iface->end_run(host->instance->lv2_handle); } |