[arch-commits] Commit in opendmarc/trunk (CVE-2020-12460.patch)
Thore Bödecker
foxxx0 at archlinux.org
Wed Feb 24 14:16:44 UTC 2021
Date: Wednesday, February 24, 2021 @ 14:16:44
Author: foxxx0
Revision: 871430
upgpkg: opendmarc 1.4.0-1: update to upstream release 1.4.0
Deleted:
opendmarc/trunk/CVE-2020-12460.patch
----------------------+
CVE-2020-12460.patch | 41 -----------------------------------------
1 file changed, 41 deletions(-)
Deleted: CVE-2020-12460.patch
===================================================================
--- CVE-2020-12460.patch 2021-02-24 14:16:39 UTC (rev 871429)
+++ CVE-2020-12460.patch 2021-02-24 14:16:44 UTC (rev 871430)
@@ -1,41 +0,0 @@
-From 50d28af25d8735504b6103537228ce7f76ad765f Mon Sep 17 00:00:00 2001
-From: "Murray S. Kucherawy" <msk at blackops.org>
-Date: Wed, 5 Aug 2020 21:56:01 +0000
-Subject: [PATCH] In opendmarc_xml_parse(), ensure NULL-termination of the
- buffer passed to opendmarc_xml().
-
----
- libopendmarc/opendmarc_xml.c | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/libopendmarc/opendmarc_xml.c b/libopendmarc/opendmarc_xml.c
-index 26bb9dc..b3ac55a 100644
---- a/libopendmarc/opendmarc_xml.c
-+++ b/libopendmarc/opendmarc_xml.c
-@@ -158,7 +158,7 @@ opendmarc_xml(char *b, size_t blen, char *e, size_t elen)
- if (*cp != '<')
- continue;
- ++cp;
-- for(sp = cp; *sp != '\0'; ++sp)
-+ for (sp = cp; *sp != '\0'; ++sp)
- {
- if (*sp == '?')
- break;
-@@ -546,7 +546,7 @@ opendmarc_xml_parse(char *fname, char *err_buf, size_t err_len)
- if (fname == NULL)
- {
- xerror = errno;
-- (void) snprintf(err_buf, err_len, "%s: %s", fname, "File name was NULL");
-+ (void) snprintf(err_buf, err_len, "%s", "File name was NULL");
- errno = EINVAL;
- return NULL;
- }
-@@ -572,7 +572,7 @@ opendmarc_xml_parse(char *fname, char *err_buf, size_t err_len)
- return NULL;
- }
-
-- bufp = calloc(statb.st_size, 1);
-+ bufp = calloc(statb.st_size + 1, 1);
- if (bufp == NULL)
- {
- xerror = errno;
More information about the arch-commits
mailing list