Fix uninitialised variable.

git-svn-id: svn://localhost/ardour2/branches/3.0@6458 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2010-01-05 16:37:53 +00:00
parent 46534f2f59
commit 797c2767f1

View file

@ -722,6 +722,8 @@ LV2PluginInfo::discover (void* lv2_world)
continue;
}
info->type = LV2;
info->name = string(slv2_value_as_string(name));
slv2_value_free(name);