diff --git a/core/src/main/java/lucee/runtime/net/http/HttpUtil.java b/core/src/main/java/lucee/runtime/net/http/HttpUtil.java index ad4c045ff1..fb7eedb267 100644 --- a/core/src/main/java/lucee/runtime/net/http/HttpUtil.java +++ b/core/src/main/java/lucee/runtime/net/http/HttpUtil.java @@ -56,7 +56,7 @@ public static Pair[] cloneHeaders(HttpServletRequest req) { } public static Struct getAttributesAsStruct(HttpServletRequest req) { - Struct attributes = new StructImpl(StructImpl.TYPE_UNDEFINED, 64 ); + Struct attributes = new StructImpl(); Enumeration e = req.getAttributeNames(); String name; while (e.hasMoreElements()) {