From 1c51f3d3f1969167322b56d65e3d4db4262184cc Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Sun, 15 Dec 2024 21:32:36 +0100 Subject: [PATCH] catalog: Check reallocations for overflow --- catalog.c | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/catalog.c b/catalog.c index 101fc9f4..cf690ae3 100644 --- a/catalog.c +++ b/catalog.c @@ -40,6 +40,7 @@ #include "private/cata.h" #include "private/buf.h" #include "private/error.h" +#include "private/memory.h" #include "private/threads.h" #define MAX_DELEGATE 50 @@ -2128,7 +2129,7 @@ xmlParseSGMLCatalogComment(const xmlChar *cur) { */ static const xmlChar * xmlParseSGMLCatalogPubid(const xmlChar *cur, xmlChar **id) { - xmlChar *buf = NULL, *tmp; + xmlChar *buf = NULL; int len = 0; int size = 50; xmlChar stop; @@ -2155,14 +2156,23 @@ xmlParseSGMLCatalogPubid(const xmlChar *cur, xmlChar **id) { if ((stop == ' ') && (IS_BLANK_CH(*cur))) break; if (len + 1 >= size) { - size *= 2; - tmp = (xmlChar *) xmlRealloc(buf, size); + xmlChar *tmp; + int newSize; + + newSize = xmlGrowCapacity(size, 1, 1, XML_MAX_ITEMS); + if (newSize < 0) { + xmlCatalogErrMemory(); + xmlFree(buf); + return(NULL); + } + tmp = xmlRealloc(buf, newSize); if (tmp == NULL) { xmlCatalogErrMemory(); xmlFree(buf); return(NULL); } buf = tmp; + size = newSize; } buf[len++] = *cur; NEXT;