summaryrefslogtreecommitdiffstats
path: root/src/pluginclass.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-01-31 00:41:06 +0000
committerDavid Robillard <d@drobilla.net>2011-01-31 00:41:06 +0000
commitd716c6d5e7c622d238d460a32ad7d02845fbc4d4 (patch)
treedce6145cf6bd9c03eb7904def4194af55568d53c /src/pluginclass.c
parent8ab85a31c348a40858752a035a14ccb6df5fd6c2 (diff)
downloadlilv-d716c6d5e7c622d238d460a32ad7d02845fbc4d4.tar.gz
lilv-d716c6d5e7c622d238d460a32ad7d02845fbc4d4.tar.bz2
lilv-d716c6d5e7c622d238d460a32ad7d02845fbc4d4.zip
Replace more librdf_uri.
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2881 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/pluginclass.c')
-rw-r--r--src/pluginclass.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/pluginclass.c b/src/pluginclass.c
index 6f73083..910375c 100644
--- a/src/pluginclass.c
+++ b/src/pluginclass.c
@@ -35,12 +35,13 @@ slv2_plugin_class_new(SLV2World world,
const char* label)
{
assert(!parent_node || librdf_node_is_resource(parent_node));
- librdf_uri* parent_uri = parent_node ? librdf_node_get_uri(parent_node) : NULL;
SLV2PluginClass pc = (SLV2PluginClass)malloc(sizeof(struct _SLV2PluginClass));
- pc->world = world;
- pc->parent_uri = (parent_uri ? slv2_value_new_librdf_uri(world, parent_node) : NULL);
- pc->uri = slv2_value_new_librdf_uri(world, uri);
- pc->label = slv2_value_new(world, SLV2_VALUE_STRING, label);
+ pc->world = world;
+ pc->uri = slv2_value_new_librdf_uri(world, uri);
+ pc->label = slv2_value_new(world, SLV2_VALUE_STRING, label);
+ pc->parent_uri = (parent_node)
+ ? slv2_value_new_librdf_uri(world, parent_node)
+ : NULL;
return pc;
}