From 8ed40c621b33b44c26e90505b9de1c92080c4a8e Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Tue, 13 Dec 2022 00:51:33 +0100 Subject: [PATCH] Revert "uri: Allow port without host" This reverts commit f30adb54f55e4e765d58195163f2a21f7ac759fb. Fixes #460. --- uri.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/uri.c b/uri.c index 92448b29..a149f23c 100644 --- a/uri.c +++ b/uri.c @@ -770,6 +770,8 @@ xmlParse3986HierPart(xmlURIPtr uri, const char **str) cur += 2; ret = xmlParse3986Authority(uri, &cur); if (ret != 0) return(ret); + if (uri->server == NULL) + uri->port = -1; ret = xmlParse3986PathAbEmpty(uri, &cur); if (ret != 0) return(ret); *str = cur;