summaryrefslogtreecommitdiffstats
path: root/src/LV2Features.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/LV2Features.cpp')
-rw-r--r--src/LV2Features.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LV2Features.cpp b/src/LV2Features.cpp
index b3600f02..b6765ae3 100644
--- a/src/LV2Features.cpp
+++ b/src/LV2Features.cpp
@@ -35,7 +35,7 @@ LV2Features::add_feature(SPtr<Feature> feature)
LV2Features::FeatureArray::FeatureArray(FeatureVector& features)
: _features(features)
{
- _array = (LV2_Feature**)malloc(sizeof(LV2_Feature) * (features.size() + 1));
+ _array = (LV2_Feature**)malloc(sizeof(LV2_Feature*) * (features.size() + 1));
_array[features.size()] = NULL;
for (size_t i = 0; i < features.size(); ++i) {
_array[i] = features[i].get();