diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | src/reader.c | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -1,10 +1,11 @@ serd (0.21.0) unstable; * Remove dependence on fmax() to avoid portability issues + * Fix serd_reader_read_file() for URIs with escaped characters (spaces) * Report errors for invalid IRI characters and missing terminators * Fix warnings when building with ISO C++ compilers - -- David Robillard <d@drobilla.net> Tue, 09 Dec 2014 16:24:15 -0500 + -- David Robillard <d@drobilla.net> Wed, 10 Dec 2014 14:29:19 -0500 serd (0.20.0) stable; diff --git a/src/reader.c b/src/reader.c index 12d81fac..80f1c2ed 100644 --- a/src/reader.c +++ b/src/reader.c @@ -1553,18 +1553,20 @@ SerdStatus serd_reader_read_file(SerdReader* reader, const uint8_t* uri) { - const uint8_t* path = serd_uri_to_path(uri); + uint8_t* const path = serd_file_uri_parse(uri, NULL); if (!path) { return SERD_ERR_BAD_ARG; } FILE* fd = serd_fopen((const char*)path, "r"); if (!fd) { + free(path); return SERD_ERR_UNKNOWN; } SerdStatus ret = serd_reader_read_file_handle(reader, fd, path); fclose(fd); + free(path); return ret; } |