aboutsummaryrefslogtreecommitdiffstats
path: root/src/uri.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-03-29 00:51:50 +0000
committerDavid Robillard <d@drobilla.net>2012-03-29 00:51:50 +0000
commit32da26f159e2d16218809ae3e2526ae85841787a (patch)
tree1e63acf057ef3a60760fbd85cc4e4a8c12ddc650 /src/uri.c
parent75ad5aa2a14339a38ac6824f2039d551ab04457d (diff)
downloadserd-32da26f159e2d16218809ae3e2526ae85841787a.tar.gz
serd-32da26f159e2d16218809ae3e2526ae85841787a.tar.bz2
serd-32da26f159e2d16218809ae3e2526ae85841787a.zip
Don't break relative URIs with up-references when parsing a document with no base URI.
git-svn-id: http://svn.drobilla.net/serd/trunk@342 490d8e77-9747-427b-9fa3-0b8f29cee8a0
Diffstat (limited to 'src/uri.c')
-rw-r--r--src/uri.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/uri.c b/src/uri.c
index 781f9b68..f7d17e59 100644
--- a/src/uri.c
+++ b/src/uri.c
@@ -327,6 +327,8 @@ merge(SerdChunk* base, SerdChunk* path)
if (base->buf) {
assert(base->len > 0);
+ assert(base->buf[0] == '/');
+
// Find the up'th last slash
const uint8_t* base_last = (base->buf + base->len - 1);
++up;
@@ -337,12 +339,7 @@ merge(SerdChunk* base, SerdChunk* path)
} while (up > 0 && (--base_last > base->buf));
// Set path prefix
- if (*base_last == '/') {
- base->len = base_last - base->buf + 1;
- } else {
- base->len = 0;
- base->buf = NULL;
- }
+ base->len = base_last - base->buf + 1;
}
// Set path suffix
@@ -355,6 +352,11 @@ SERD_API
void
serd_uri_resolve(const SerdURI* r, const SerdURI* base, SerdURI* t)
{
+ if (!base->scheme.len) {
+ *t = *r; // Don't resolve against non-absolute URIs
+ return;
+ }
+
t->path_base.buf = NULL;
t->path_base.len = 0;
if (r->scheme.len) {