diff options
author | Eike Rathke <erack@redhat.com> | 2014-04-25 10:55:12 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2014-04-25 11:21:16 +0100 |
commit | 9c78e71903146acec47e0d32b23b9e5cc3e021a1 (patch) | |
tree | 80827929f6816c66cd730fe454446fa37fd6127d | |
parent | 5e4b21e2d627de0c815370ed886ff95675bf28d1 (diff) |
return early once we pushed an error, fdo#73148 related
Change-Id: Iadc520fe897966bf41c793ae37f510addfd68cef
-rw-r--r-- | sc/source/core/tool/interpr1.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/interpr1.cxx b/sc/source/core/tool/interpr1.cxx index 4b6140a1d457..a7440f4c1972 100644 --- a/sc/source/core/tool/interpr1.cxx +++ b/sc/source/core/tool/interpr1.cxx @@ -6663,7 +6663,7 @@ void ScInterpreter::ScAggregate() break; default : PushIllegalArgument(); - break; + return; } // TODO: implement filter options if ( nAggrFlags != 0x00 ) |