There is possible NPE in XMLDataImporter#processMessageProperties
realValue = null;
case XmlDataConstants.PROPERTY_TYPE_SIMPLE_STRING: if (!value.equals(XmlDataConstants.NULL)) { realValue = value; } message.putStringProperty(new SimpleString(key), new SimpleString(realValue)); break;
If realValue is null, new SimpleString(realValue) throws NPE
- is cloned by
-
JBEAP-5824 (7.0.z) ARTEMIS-653 - Possible Null Pointer Exception during message properties read using XmlDataImporter
- Verified
- is incorporated by
-
JBEAP-5830 (7.1.0) Upgrade Artemis from 1.1.0.SP18 to 1.4.0
- Verified
- cloned to
-
ARTEMIS-653 Loading...