From 67d51a4d8b580aa9e83abcdeae0ae04c483c0f4c Mon Sep 17 00:00:00 2001 From: niansa Date: Thu, 13 Apr 2023 13:52:07 +0200 Subject: [PATCH] Report result of original function --- nss.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/nss.c b/nss.c index 4e0bac5..1db137e 100644 --- a/nss.c +++ b/nss.c @@ -36,8 +36,5 @@ SECStatus SSL_SetURL(PRFileDesc *fd, const char *url) { if (!url) return SECFailure; // Call origin function - orig(fd, url); - - // Report success - return SECSuccess; + return orig(fd, url);; }