diff options
author | David Robillard <d@drobilla.net> | 2017-01-03 15:52:27 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-01-03 15:55:14 -0500 |
commit | 0d50475ad77cf4f401005b2e4eafb982e0de7904 (patch) | |
tree | a770f3978b654a399b3ce7ddc592186cb213a963 /tests | |
parent | 74414622a048225fe1b070ffcdda2dde1a47bac6 (diff) | |
download | ingen-0d50475ad77cf4f401005b2e4eafb982e0de7904.tar.gz ingen-0d50475ad77cf4f401005b2e4eafb982e0de7904.tar.bz2 ingen-0d50475ad77cf4f401005b2e4eafb982e0de7904.zip |
Always escape file URIs
Diffstat (limited to 'tests')
-rw-r--r-- | tests/ingen_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ingen_test.cpp b/tests/ingen_test.cpp index bb013ebd..04159305 100644 --- a/tests/ingen_test.cpp +++ b/tests/ingen_test.cpp @@ -226,7 +226,7 @@ main(int argc, char** argv) SerdURI cmds_base; SerdNode cmds_file_uri = serd_node_new_file_uri( (const uint8_t*)cmds_file_path.c_str(), - NULL, &cmds_base, false); + NULL, &cmds_base, true); Sord::Model* cmds = new Sord::Model(*world->rdf_world(), (const char*)cmds_file_uri.buf); SerdEnv* env = serd_env_new(&cmds_file_uri); |