This is an automated email from the ASF dual-hosted git repository.
lihan pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/10.1.x by this push:
new 4269d2b05a Fix a bug that memory allocation is larger than limit in
SynchronizedStack to reduce memory footprint.
4269d2b05a is described below
commit 4269d2b05abe7e182dfb46b30dc253271a58e71b
Author: lihan <[email protected]>
AuthorDate: Mon Feb 27 16:25:42 2023 +0800
Fix a bug that memory allocation is larger than limit in SynchronizedStack
to reduce memory footprint.
---
java/org/apache/tomcat/util/collections/SynchronizedStack.java | 2 +-
webapps/docs/changelog.xml | 8 ++++++++
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/java/org/apache/tomcat/util/collections/SynchronizedStack.java
b/java/org/apache/tomcat/util/collections/SynchronizedStack.java
index f178b02048..526c44cef5 100644
--- a/java/org/apache/tomcat/util/collections/SynchronizedStack.java
+++ b/java/org/apache/tomcat/util/collections/SynchronizedStack.java
@@ -52,7 +52,7 @@ public class SynchronizedStack<T> {
this.size = size;
}
this.limit = limit;
- stack = new Object[size];
+ stack = new Object[this.size];
}
diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 621d701767..729ed8f22a 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -105,6 +105,14 @@
issues do not "pop up" wrt. others).
-->
<section name="Tomcat 10.1.7 (markt)" rtext="in development">
+ <subsection name="General">
+ <changelog>
+ <fix>
+ Fix a bug that memory allocation is larger than limit in
+ <code>SynchronizedStack</code> to reduce memory footprint. (lihan)
+ </fix>
+ </changelog>
+ </subsection>
<subsection name="Catalina">
<changelog>
<add>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]