581785
From 49923ccb2143e36850bcdeb781e2bcdf5ce22f15 Mon Sep 17 00:00:00 2001
581785
From: John Hawthorn <john@hawthorn.email>
581785
Date: Wed, 2 Mar 2022 14:17:59 -0800
581785
Subject: [PATCH] Check need < buf->used
581785
581785
We're guaranteed a power of 2 so that this becomes 0, but we might as
581785
well use a check for overflow that works in more cases.
581785
581785
Unsigned integer overflow is defined behaviour, so this should be safe.
581785
581785
(cherry picked from commit 36410d536b676e836637bb20574a56ebc920eb83)
581785
---
581785
 src/yajl_buf.c | 9 +++++++--
581785
 1 file changed, 7 insertions(+), 2 deletions(-)
581785
581785
diff --git a/src/yajl_buf.c b/src/yajl_buf.c
581785
index 1aeafde0..8bd1bea7 100644
581785
--- a/src/yajl_buf.c
581785
+++ b/src/yajl_buf.c
581785
@@ -30,7 +30,7 @@ struct yajl_buf_t {
581785
 };
581785
 
581785
 static
581785
-void yajl_buf_ensure_available(yajl_buf buf, size_t want)
581785
+int yajl_buf_ensure_available(yajl_buf buf, size_t want)
581785
 {
581785
     size_t need;
581785
     
581785
@@ -46,11 +46,15 @@ void yajl_buf_ensure_available(yajl_buf buf, size_t want)
581785
     need = buf->len;
581785
 
581785
     while (want >= (need - buf->used)) need <<= 1;
581785
+    if (need < buf->used) {
581785
+         return -1;
581785
+    }
581785
 
581785
     if (need != buf->len) {
581785
         buf->data = (unsigned char *) YA_REALLOC(buf->alloc, buf->data, need);
581785
         buf->len = need;
581785
     }
581785
+    return 0;
581785
 }
581785
 
581785
 yajl_buf yajl_buf_alloc(yajl_alloc_funcs * alloc)
581785
@@ -70,7 +74,8 @@ void yajl_buf_free(yajl_buf buf)
581785
 
581785
 void yajl_buf_append(yajl_buf buf, const void * data, size_t len)
581785
 {
581785
-    yajl_buf_ensure_available(buf, len);
581785
+    if (yajl_buf_ensure_available(buf, len))
581785
+        return;
581785
     if (len > 0) {
581785
         assert(data != NULL);
581785
         memcpy(buf->data + buf->used, data, len);