aboutsummaryrefslogtreecommitdiffstats
path: root/src/random.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-05-31 06:47:21 +0000
committerDavid Robillard <d@drobilla.net>2012-05-31 06:47:21 +0000
commitd9edf16e55663cb8374b370e370bdcc8f98284e8 (patch)
tree4e999d5bd42b10e90b8dd2f5a12580a345fa571c /src/random.c
parent7b20413c84b14d2c2bc1037bb08134dcdf152ddb (diff)
downloadblop.lv2-d9edf16e55663cb8374b370e370bdcc8f98284e8.tar.gz
blop.lv2-d9edf16e55663cb8374b370e370bdcc8f98284e8.tar.bz2
blop.lv2-d9edf16e55663cb8374b370e370bdcc8f98284e8.zip
Fix memory errors.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/blop.lv2@4490 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/random.c')
-rw-r--r--src/random.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/random.c b/src/random.c
index 1671854..2a4a7b7 100644
--- a/src/random.c
+++ b/src/random.c
@@ -122,6 +122,8 @@ instantiate(const LV2_Descriptor* descriptor,
plugin->frequency_is_cv = 0;
plugin->smooth_is_cv = 0;
+ map_uris(&plugin->uris, features);
+
return (LV2_Handle)plugin;
}