aboutsummaryrefslogtreecommitdiffstats
path: root/src/serdi.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-06-13 17:11:13 -0400
committerDavid Robillard <d@drobilla.net>2020-10-27 13:13:58 +0100
commit93e54363f5ae251acee94051f77305f60f0158c8 (patch)
tree3fc4e6166ba3d4525446a046a237b66fc9b0c134 /src/serdi.c
parent06b775c1de2173720fe12abec2fbe225c353a12b (diff)
downloadserd-93e54363f5ae251acee94051f77305f60f0158c8.tar.gz
serd-93e54363f5ae251acee94051f77305f60f0158c8.tar.bz2
serd-93e54363f5ae251acee94051f77305f60f0158c8.zip
Remove escape parameter from serd_new_file_uri
Since characters are escaped because they are not valid characters in a URI, any use of this function without escaping is problematic at best.
Diffstat (limited to 'src/serdi.c')
-rw-r--r--src/serdi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/serdi.c b/src/serdi.c
index 5e64e709..14eb04c5 100644
--- a/src/serdi.c
+++ b/src/serdi.c
@@ -198,7 +198,7 @@ main(int argc, char** argv)
if (a < argc) { // Base URI given on command line
base = serd_new_uri(argv[a]);
} else if (!from_string && !from_stdin) { // Use input file URI
- base = serd_new_file_uri(input, NULL, true);
+ base = serd_new_file_uri(input, NULL);
}
FILE* out_fd = stdout;