aboutsummaryrefslogtreecommitdiff
path: root/source/compiler/aslcache.c
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2025-04-10 03:51:28 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2025-04-10 03:51:28 +0000
commit97a7606d897edfa3089cb04eea70096a1f9cf734 (patch)
treec60774fdb1d10ddd5e2e7ea473de288f62458881 /source/compiler/aslcache.c
parent98a2c01a889887800ea689bbbed0c3c240712fc5 (diff)
Diffstat (limited to 'source/compiler/aslcache.c')
-rw-r--r--source/compiler/aslcache.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/compiler/aslcache.c b/source/compiler/aslcache.c
index d3fddfea5721..094c6422c1b8 100644
--- a/source/compiler/aslcache.c
+++ b/source/compiler/aslcache.c
@@ -8,7 +8,7 @@
*
* 1. Copyright Notice
*
- * Some or all of this work - Copyright (c) 1999 - 2024, Intel Corp.
+ * Some or all of this work - Copyright (c) 1999 - 2025, Intel Corp.
* All rights reserved.
*
* 2. License
@@ -210,7 +210,8 @@ UtLocalCacheCalloc (
}
}
- if ((AslGbl_StringCacheNext + Length) >= AslGbl_StringCacheLast)
+ if ((!AslGbl_StringCacheNext) ||
+ ((AslGbl_StringCacheNext + Length) >= AslGbl_StringCacheLast))
{
/* Allocate a new buffer */