From d8437709d6f69b4952993a6794313edb38361a53 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 5 Mar 2010 19:43:20 +0000 Subject: Parse all files with correct base URI. Support relative URIs returned from lv2_descriptor. git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@2529 a436a847-0d15-0410-975c-d299462d15a1 --- src/world.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/world.c') diff --git a/src/world.c b/src/world.c index 35d006f..32ebd31 100644 --- a/src/world.c +++ b/src/world.c @@ -182,7 +182,7 @@ slv2_world_free(SLV2World world) void slv2_world_load_file(SLV2World world, librdf_uri* file_uri) { - librdf_parser_parse_into_model(world->parser, file_uri, NULL, world->model); + librdf_parser_parse_into_model(world->parser, file_uri, file_uri, world->model); } @@ -203,8 +203,8 @@ slv2_world_load_bundle(SLV2World world, SLV2Value bundle_uri) librdf_model* manifest_model = librdf_new_model(world->world, manifest_storage, NULL); - librdf_parser_parse_into_model(world->parser, manifest_uri, NULL, - manifest_model); + librdf_parser_parse_into_model(world->parser, manifest_uri, + manifest_uri, manifest_model); #ifdef SLV2_DYN_MANIFEST typedef void* LV2_Dyn_Manifest_Handle; -- cgit v1.2.1