diff options
-rw-r--r-- | sc/source/core/data/dptabres.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/source/core/data/dptabres.cxx b/sc/source/core/data/dptabres.cxx index 84ce25806c84..c1a1824dd4a9 100644 --- a/sc/source/core/data/dptabres.cxx +++ b/sc/source/core/data/dptabres.cxx @@ -1369,6 +1369,10 @@ void ScDPResultMember::FillMemberResults( uno::Sequence<sheet::MemberResult>* pS // IsVisible() test is in ScDPResultDimension::FillMemberResults // (not on data layout dimension) + if (!pSequences->getLength()) + // empty sequence. Bail out. + return; + long nSize = GetSize(nMeasure); sheet::MemberResult* pArray = pSequences->getArray(); OSL_ENSURE( rPos+nSize <= pSequences->getLength(), "bumm" ); |