diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-01-02 23:56:43 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-01-02 23:59:30 -0500 |
commit | eee87edf551f7a9f8c4da4267e5710edafd1725d (patch) | |
tree | adad16923f36cffd2ac7fc124764c84dd0650765 /sc | |
parent | b060b43f093dce23222fd99375b1c6bd433703d9 (diff) |
fdo#58539: Properly initialize a member pointer value.
Or else it would crash when loading the doc from fdo#55174.
Change-Id: I21eb77f97dcab467c185dacaf9f00753bb4fc18c
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/oox/defnamesbuffer.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/source/filter/oox/defnamesbuffer.cxx b/sc/source/filter/oox/defnamesbuffer.cxx index d735ac40f142..488b7e36aba3 100644 --- a/sc/source/filter/oox/defnamesbuffer.cxx +++ b/sc/source/filter/oox/defnamesbuffer.cxx @@ -285,6 +285,7 @@ ApiTokenSequence DefinedNameBase::importBiffFormula( sal_Int16 nBaseSheet, BiffI DefinedName::DefinedName( const WorkbookHelper& rHelper ) : DefinedNameBase( rHelper ), + mpScRangeData(NULL), mnTokenIndex( -1 ), mcBuiltinId( BIFF_DEFNAME_UNKNOWN ), mnFmlaSize( 0 ) |