diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-05-13 13:01:11 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-05-13 13:01:11 +0000 |
commit | 6331e6d729fe3cdefa1eb7dfaef61f00919ff1de (patch) | |
tree | 62c6b8c111ca04583d95df945f70cb5f1958ac6b /cppuhelper | |
parent | 410fd1fdee79c0aac01835c935be910fcc79d784 (diff) |
INTEGRATION: CWS cmcfixes44 (1.31.6); FILE MERGED
2008/04/24 08:31:49 cmc 1.31.6.1: #i88676# osl_freeProcessHandle is missing after a successful call to osl_executeProcess
Diffstat (limited to 'cppuhelper')
-rw-r--r-- | cppuhelper/source/bootstrap.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cppuhelper/source/bootstrap.cxx b/cppuhelper/source/bootstrap.cxx index 3547ecd0ed8b..831adf084f11 100644 --- a/cppuhelper/source/bootstrap.cxx +++ b/cppuhelper/source/bootstrap.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: bootstrap.cxx,v $ - * $Revision: 1.31 $ + * $Revision: 1.32 $ * * This file is part of OpenOffice.org. * @@ -569,6 +569,7 @@ Reference< XComponentContext > SAL_CALL bootstrap() switch ( rc ) { case osl_Process_E_None: + osl_freeProcessHandle( hProcess ); break; case osl_Process_E_NotFound: throw BootstrapException( OUSTR( "image not found!" ) ); |