diff options
Diffstat (limited to 'src/plugin.c')
-rw-r--r-- | src/plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugin.c b/src/plugin.c index 4b29a00..ce2a3ee 100644 --- a/src/plugin.c +++ b/src/plugin.c @@ -164,6 +164,7 @@ slv2_plugin_load_ports_if_necessary(SLV2Plugin p) NULL); FOREACH_MATCH(ports) { + SLV2Value index = NULL; SLV2Node port = slv2_match_object(ports); SLV2Value symbol = slv2_plugin_get_unique( p, port, p->world->lv2_symbol_node); @@ -174,8 +175,7 @@ slv2_plugin_load_ports_if_necessary(SLV2Plugin p) goto error; } - SLV2Value index = slv2_plugin_get_unique( - p, port, p->world->lv2_index_node); + index = slv2_plugin_get_unique(p, port, p->world->lv2_index_node); if (!slv2_value_is_int(index)) { SLV2_ERROR("port has a non-integer index\n"); |