net-dns/rbldnsd: remove unused patch
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>
Wed, 20 Nov 2019 18:31:30 +0000 (19:31 +0100)
committerMichael Orlitzky <mjo@gentoo.org>
Thu, 21 Nov 2019 12:48:08 +0000 (07:48 -0500)
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Signed-off-by: Michael Orlitzky <mjo@gentoo.org>
net-dns/rbldnsd/files/rbldnsd-0.998-fix-huge-zone-OOM.patch [deleted file]

diff --git a/net-dns/rbldnsd/files/rbldnsd-0.998-fix-huge-zone-OOM.patch b/net-dns/rbldnsd/files/rbldnsd-0.998-fix-huge-zone-OOM.patch
deleted file mode 100644 (file)
index 7a4d2da..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-This upstream patch has been merged but not released. I (mjo) dropped
-a change to the NEWS file to prevent a pointless conflict.
-
-From a1295eefc78b6e8a3c220e164dbfad6dbecc6f6e Mon Sep 17 00:00:00 2001
-From: Antonio Mammita <am@spamteq.com>
-Date: Wed, 21 Dec 2016 16:54:06 +0100
-Subject: [PATCH] Fix for out of memory errors on huge zones. Thanks to Andrew
- Clayton
-
----
- rbldnsd.h      | 6 +++---
- rbldnsd_util.c | 6 +++---
- 3 files changed, 10 insertions(+), 6 deletions(-)
-
-diff --git a/rbldnsd.h b/rbldnsd.h
-index 6acd8a0..f195a30 100644
---- a/rbldnsd.h
-+++ b/rbldnsd.h
-@@ -367,9 +367,9 @@ extern struct dataset *g_dsacl;    /* global acl */
- extern const char *show_version; /* version.bind CH TXT */
- void oom(void);
--char *emalloc(unsigned size);
--char *ezalloc(unsigned size); /* zero-fill */
--char *erealloc(void *ptr, unsigned size);
-+char *emalloc(size_t size);
-+char *ezalloc(size_t size); /* zero-fill */
-+char *erealloc(void *ptr, size_t size);
- char *estrdup(const char *str);
- char *ememdup(const void *buf, unsigned size);
-diff --git a/rbldnsd_util.c b/rbldnsd_util.c
-index d17b51b..c6d628d 100644
---- a/rbldnsd_util.c
-+++ b/rbldnsd_util.c
-@@ -460,21 +460,21 @@ dump_a_txt(const char *name, const char *rr,
- #endif
--char *emalloc(unsigned size) {
-+char *emalloc(size_t size) {
-   void *ptr = malloc(size);
-   if (!ptr)
-     oom();
-   return ptr;
- }
--char *ezalloc(unsigned size) {
-+char *ezalloc(size_t size) {
-   void *ptr = calloc(1, size);
-   if (!ptr)
-     oom();
-   return ptr;
- }
--char *erealloc(void *ptr, unsigned size) {
-+char *erealloc(void *ptr, size_t size) {
-   void *nptr = realloc(ptr, size);
-   if (!nptr)
-     oom();