diff options
author | Kai Sommerfeld <kso@openoffice.org> | 2001-11-22 10:38:27 +0000 |
---|---|---|
committer | Kai Sommerfeld <kso@openoffice.org> | 2001-11-22 10:38:27 +0000 |
commit | 0c4d89d519318f931408be766457ea61c2b94753 (patch) | |
tree | 4d6e94eda223ce918f694384b4c14f9f64aa9fbe /ucbhelper | |
parent | dfcfa273529fa04875319b7df5e8e8ce69c47e72 (diff) |
#95029# - Fixed index-out-of-range condition in ctor.
Diffstat (limited to 'ucbhelper')
-rw-r--r-- | ucbhelper/source/provider/simpleinteractionrequest.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ucbhelper/source/provider/simpleinteractionrequest.cxx b/ucbhelper/source/provider/simpleinteractionrequest.cxx index 016c31ff48a0..3a338599fa83 100644 --- a/ucbhelper/source/provider/simpleinteractionrequest.cxx +++ b/ucbhelper/source/provider/simpleinteractionrequest.cxx @@ -2,9 +2,9 @@ * * $RCSfile: simpleinteractionrequest.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: kso $ $Date: 2001-05-28 12:42:46 $ + * last change: $Author: kso $ $Date: 2001-11-22 11:38:27 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -113,6 +113,8 @@ SimpleInteractionRequest::SimpleInteractionRequest( uno::Sequence< uno::Reference< task::XInteractionContinuation > > aContinuations( nLength ); + nLength = 0; + if ( xAbort.is() ) aContinuations[ nLength++ ] = xAbort; |