diff options
Diffstat (limited to 'lv2/core')
-rw-r--r-- | lv2/core/lv2_util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lv2/core/lv2_util.h b/lv2/core/lv2_util.h index 0792941..0269c70 100644 --- a/lv2/core/lv2_util.h +++ b/lv2/core/lv2_util.h @@ -86,10 +86,12 @@ lv2_features_query(const LV2_Feature* const* features, ...) *data = lv2_features_data(features, uri); if (required && !*data) { + va_end(args); return uri; } } + va_end(args); return NULL; } |