diff options
author | David Robillard <d@drobilla.net> | 2012-04-01 19:10:36 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-04-01 19:10:36 +0000 |
commit | 308374bd26ec9bb4fe7854ea55e8de84c040b4fe (patch) | |
tree | bd9b353ea1178cde9967621bc445f5ab96f8ecce /src | |
parent | b2a90e277a3b462f7c8682cd562c3ad55b5c062a (diff) | |
download | jalv-308374bd26ec9bb4fe7854ea55e8de84c040b4fe.tar.gz jalv-308374bd26ec9bb4fe7854ea55e8de84c040b4fe.tar.bz2 jalv-308374bd26ec9bb4fe7854ea55e8de84c040b4fe.zip |
Fix crash with plugins without a worker interface.
git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@4139 a436a847-0d15-0410-975c-d299462d15a1
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); } |