diff options
Diffstat (limited to 'src/query.c')
-rw-r--r-- | src/query.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/query.c b/src/query.c index ac49ece..e7f6565 100644 --- a/src/query.c +++ b/src/query.c @@ -37,7 +37,10 @@ slv2_plugin_find_statements(SLV2Plugin plugin, { slv2_plugin_load_if_necessary(plugin); librdf_statement* q = librdf_new_statement_from_nodes( - plugin->world->world, subject, predicate, object); + plugin->world->world, + subject ? librdf_new_node_from_node(subject) : NULL, + predicate ? librdf_new_node_from_node(predicate) : NULL, + object ? librdf_new_node_from_node(object) : NULL); librdf_stream* results = librdf_model_find_statements(plugin->rdf, q); librdf_free_statement(q); return results; |