diff options
Diffstat (limited to 'src/node.c')
-rw-r--r-- | src/node.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -68,8 +68,7 @@ serd_uri_string_length(const SerdURI* uri) ADD_LEN(uri->query, 1); // + leading `?' ADD_LEN(uri->fragment, 1); // + leading `#' - // Add 2 for authority // prefix (added even though authority.len = 0) - return len + 2; // + 2 for authority // + return len + 2; // + 2 for authority `//' } static size_t |