diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-05-13 13:03:28 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-05-13 13:03:28 +0000 |
commit | 80c2865783d0cb8b2f6de1ce4fa6abcd20e68ab3 (patch) | |
tree | be8ea9d72559db175c974b836d65d92b0339143d /jvmfwk | |
parent | 6331e6d729fe3cdefa1eb7dfaef61f00919ff1de (diff) |
INTEGRATION: CWS cmcfixes44 (1.16.6); FILE MERGED
2008/04/24 08:02:19 cmc 1.16.6.1: #i88676# osl_freeProcessHandle is missing after a successful call to osl_executeProcess
Diffstat (limited to 'jvmfwk')
-rw-r--r-- | jvmfwk/plugins/sunmajor/pluginlib/util.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jvmfwk/plugins/sunmajor/pluginlib/util.cxx b/jvmfwk/plugins/sunmajor/pluginlib/util.cxx index 35b34f118827..66496afa5611 100644 --- a/jvmfwk/plugins/sunmajor/pluginlib/util.cxx +++ b/jvmfwk/plugins/sunmajor/pluginlib/util.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: util.cxx,v $ - * $Revision: 1.16 $ + * $Revision: 1.17 $ * * This file is part of OpenOffice.org. * @@ -473,7 +473,7 @@ bool getJavaProps(const OUString & exePath, TimeValue waitMax= {5 ,0}; procErr = osl_joinProcessWithTimeout(javaProcess, &waitMax); OSL_ASSERT(procErr == osl_Process_E_None); - + osl_freeProcessHandle(javaProcess); return ret; } |