diff options
Diffstat (limited to 'sax')
-rw-r--r-- | sax/source/fastparser/fastparser.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sax/source/fastparser/fastparser.cxx b/sax/source/fastparser/fastparser.cxx index 1b0ad53cb34c..78378dcfd14d 100644 --- a/sax/source/fastparser/fastparser.cxx +++ b/sax/source/fastparser/fastparser.cxx @@ -544,8 +544,9 @@ EventList* Entity::getEventList() } if (!mpProducedEvents) { - mpProducedEvents = new EventList(); + mpProducedEvents = new EventList; mpProducedEvents->maEvents.resize(mnEventListSize); + mpProducedEvents->mbIsAttributesEmpty = false; mnProducedEventsSize = 0; } } |