From 9d36ba3e802705b1d6236eefc99916af6116a448 Mon Sep 17 00:00:00 2001
From: David Robillard <d@drobilla.net>
Date: Thu, 20 Dec 2012 21:34:41 +0000
Subject: Fix crash when resolving against non-standard base URIs.

git-svn-id: http://svn.drobilla.net/serd/trunk@400 490d8e77-9747-427b-9fa3-0b8f29cee8a0
---
 src/uri.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

(limited to 'src')

diff --git a/src/uri.c b/src/uri.c
index 1812bb93..3294f96e 100644
--- a/src/uri.c
+++ b/src/uri.c
@@ -325,10 +325,7 @@ merge(SerdChunk* base, SerdChunk* path)
 	const uint8_t* begin = remove_dot_segments(path->buf, path->len, &up);
 	const uint8_t* end   = path->buf + path->len;
 
-	if (base->buf) {
-		assert(base->len > 0);
-		assert(base->buf[0] == '/');
-
+	if (base->buf && base->len > 0) {
 		// Find the up'th last slash
 		const uint8_t* base_last = (base->buf + base->len - 1);
 		++up;
-- 
cgit v1.2.1