From 4b26c7459b829bb12d7bb2e7bfe4aa15050c0226 Mon Sep 17 00:00:00 2001 From: georgemoralis Date: Sun, 2 Mar 2025 18:56:59 +0200 Subject: [PATCH] fixed uriparse --- src/core/libraries/network/http.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/libraries/network/http.cpp b/src/core/libraries/network/http.cpp index 4ef6282fe..dbb5b096a 100644 --- a/src/core/libraries/network/http.cpp +++ b/src/core/libraries/network/http.cpp @@ -681,7 +681,7 @@ int PS4_SYSV_ABI sceHttpUriParse(OrbisHttpUriElement* out, const char* srcUri, v } // Handle non-file schemes (e.g., "http", "https") - if (out && !out->opaque) { + else { // Parse the host and port char* hostStart = (char*)srcUri + offset; while (*hostStart == '/') {