summaryrefslogtreecommitdiffstats
path: root/src/state.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-01-18 14:10:55 +0100
committerDavid Robillard <d@drobilla.net>2020-01-18 14:10:55 +0100
commitc157f33ab2fd1ef5832e31eddfd339f72923810b (patch)
treed768188a18509025eec85479127712fa06653f83 /src/state.c
parenta9665722f49bd1be3e776dfa385da0d9ee0edfac (diff)
downloadlilv-c157f33ab2fd1ef5832e31eddfd339f72923810b.tar.gz
lilv-c157f33ab2fd1ef5832e31eddfd339f72923810b.tar.bz2
lilv-c157f33ab2fd1ef5832e31eddfd339f72923810b.zip
Ensure state directory path always ends in a separator
This can cause problems when resolving relative paths against the bundle directory, and it's simpler to ensure that the path always ends in a separator than deal with both cases in every place it is used.
Diffstat (limited to 'src/state.c')
-rw-r--r--src/state.c21
1 files changed, 13 insertions, 8 deletions
diff --git a/src/state.c b/src/state.c
index 35dd502..10f37ff 100644
--- a/src/state.c
+++ b/src/state.c
@@ -524,8 +524,11 @@ static void
set_state_dir_from_model(LilvState* state, const SordNode* graph)
{
if (!state->dir && graph) {
- const char* uri = (const char*)sord_node_get_string(graph);
- state->dir = lilv_file_uri_parse(uri, NULL);
+ const char* uri = (const char*)sord_node_get_string(graph);
+ char* path = lilv_file_uri_parse(uri, NULL);
+
+ state->dir = lilv_dir_path(path);
+ free(path);
}
assert(!state->dir || lilv_path_is_absolute(state->dir));
}
@@ -544,7 +547,7 @@ new_state_from_model(LilvWorld* world,
// Allocate state
LilvState* const state = (LilvState*)calloc(1, sizeof(LilvState));
- state->dir = lilv_strdup(dir);
+ state->dir = lilv_dir_path(dir);
state->atom_Path = map->map(map->handle, LV2_ATOM__Path);
state->uri = lilv_node_new_from_node(world, node);
@@ -710,12 +713,14 @@ lilv_state_new_from_file(LilvWorld* world,
? subject->node
: sord_node_from_serd_node(world->world, env, &node, NULL, NULL);
- char* dirname = lilv_dirname(path);
- char* real_path = lilv_realpath(dirname);
- LilvState* state = new_state_from_model(
- world, map, model, subject_node, real_path);
- free(dirname);
+ char* dirname = lilv_dirname(path);
+ char* real_path = lilv_realpath(dirname);
+ char* dir_path = lilv_dir_path(real_path);
+ LilvState* state =
+ new_state_from_model(world, map, model, subject_node, dir_path);
+ free(dir_path);
free(real_path);
+ free(dirname);
serd_node_free(&node);
free(abs_path);