From 7a847c2d5dc449c416c0fa2ee7a7e05d0a241392 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 5 Feb 2012 21:41:35 +0000 Subject: Update to r65/autowaf and waf-1.6.10. git-svn-id: http://svn.drobilla.net/serd/trunk@302 490d8e77-9747-427b-9fa3-0b8f29cee8a0 --- src/uri.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/uri.c b/src/uri.c index d329c4b5..fbd9e03d 100644 --- a/src/uri.c +++ b/src/uri.c @@ -364,8 +364,10 @@ serd_uri_serialise(const SerdURI* uri, SerdSink sink, void* stream) } while (up > 0 && (--base_last > uri->path_base.buf)); // Write base URI prefix - const size_t base_len = base_last - uri->path_base.buf + 1; - WRITE(uri->path_base.buf, base_len); + if (*base_last == '/') { + const size_t base_len = base_last - uri->path_base.buf + 1; + WRITE(uri->path_base.buf, base_len); + } } else { // Relative path is just query or fragment, append to base URI -- cgit v1.2.1