summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'desktop')
-rw-r--r--desktop/netsurf.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/desktop/netsurf.c b/desktop/netsurf.c
index 3757a2a34..8785a98a8 100644
--- a/desktop/netsurf.c
+++ b/desktop/netsurf.c
@@ -146,6 +146,8 @@ static nserror netsurf__unpack_userpass(
username = malloc(1);
password = malloc(1);
if (username == NULL || password == NULL) {
+ free(username);
+ free(password);
return NSERROR_NOMEM;
}
username[0] = '\0';
@@ -167,6 +169,8 @@ static nserror netsurf__unpack_userpass(
username = malloc(len + 1);
password = malloc(len2 + 1);
if (username == NULL || password == NULL) {
+ free(username);
+ free(password);
return NSERROR_NOMEM;
}
memcpy(username, userpass, len);