diff options
Diffstat (limited to 'plugins/eg-sampler.lv2/sampler.c')
-rw-r--r-- | plugins/eg-sampler.lv2/sampler.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/eg-sampler.lv2/sampler.c b/plugins/eg-sampler.lv2/sampler.c index 8e69bd5..38776c0 100644 --- a/plugins/eg-sampler.lv2/sampler.c +++ b/plugins/eg-sampler.lv2/sampler.c @@ -1,6 +1,6 @@ /* LV2 Sampler Example Plugin - Copyright 2011-2012 David Robillard <d@drobilla.net> + Copyright 2011-2016 David Robillard <d@drobilla.net> Copyright 2011 Gabriel M. Beddingfield <gabriel@teuton.org> Copyright 2011 James Morris <jwm.art.net@gmail.com> @@ -258,11 +258,10 @@ instantiate(const LV2_Descriptor* descriptor, const LV2_Feature* const* features) { // Allocate and initialise instance structure. - Sampler* self = (Sampler*)malloc(sizeof(Sampler)); + Sampler* self = (Sampler*)calloc(1, sizeof(Sampler)); if (!self) { return NULL; } - memset(self, 0, sizeof(Sampler)); // Get host features for (int i = 0; features[i]; ++i) { |