Skip to content

Commit d33730c

Browse files
committed
Fix #2544
1 parent 3cc3b01 commit d33730c

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

release-notes/CREDITS-2.x

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -661,10 +661,6 @@ svarzee@github
661661
* Reported #2109, suggested fix: Canonical string for reference type is built incorrectly
662662
(2.8.11.3 / 2.9.7)
663663

664-
Kaki King (kingkk9279@g)
665-
* Reported #2449: Block one more gadget type (cve CVE-2019-14540)
666-
(2.9.10)
667-
668664
Connor Kuhn (ckuhn@github)
669665
* Contributed #1341: FAIL_ON_MISSING_EXTERNAL_TYPE_ID_PROPERTY
670666
(2.9.0)
@@ -868,3 +864,11 @@ Joe Barnett (josephlbarnett@github)
868864
* Reported, contributed fix for #2404: FAIL_ON_MISSING_EXTERNAL_TYPE_ID_PROPERTY setting
869865
ignored when creator properties are buffered
870866
(2.9.10)
867+
868+
Kaki King (kingkk9279@g)
869+
* Reported #2449: Block one more gadget type (cve CVE-2019-14540)
870+
(2.9.10)
871+
872+
Jon Anderson (Jon901@github)
873+
* Reported #2544: java.lang.NoClassDefFoundError Thrown for compact profile1
874+
(2.9.10.2)

release-notes/VERSION-2.x

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Project: jackson-databind
88

99
#2526: Block two more gadget types (ehcache/JNDI - CVEs to be allocated)
1010
(repoerted by UltramanGaia)
11+
#2544: java.lang.NoClassDefFoundError Thrown for compact profile1
12+
(reported by Jon A)
1113

1214
2.9.10.1 (20-Oct-2019)
1315

src/main/java/com/fasterxml/jackson/databind/ext/OptionalHandlerFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public class OptionalHandlerFactory implements java.io.Serializable
5151
try {
5252
node = org.w3c.dom.Node.class;
5353
doc = org.w3c.dom.Document.class;
54-
} catch (Exception e) {
54+
} catch (Throwable e) {
5555
// not optimal but will do
5656
Logger.getLogger(OptionalHandlerFactory.class.getName())
5757
.log(Level.INFO, "Could not load DOM `Node` and/or `Document` classes: no DOM support");

0 commit comments

Comments
 (0)