diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2022-08-07 17:00:27 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2022-08-07 17:00:27 +0100 |
commit | 93c722ce0549360af68269f088f4e59ed8fc130e (patch) | |
tree | f8cc143ed8e508425cb53f6a2d8a8a6ca3afee22 /src | |
parent | b2e609941174b22551417f7aa394702d5d575fbf (diff) |
SPF: fix memory accounting for error case
Diffstat (limited to 'src')
-rw-r--r-- | src/src/spf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/src/spf.c b/src/src/spf.c index db6eea3a8..a8c0f75c4 100644 --- a/src/src/spf.c +++ b/src/src/spf.c @@ -204,7 +204,7 @@ spf_nxdomain = SPF_dns_rr_new_init(spf_dns_server, "", ns_t_any, 24 * 60 * 60, HOST_NOT_FOUND); if (!spf_nxdomain) { - free(spf_dns_server); + store_free(spf_dns_server); return NULL; } |