INTEGRATION: CWS pj87 (1.22.18); FILE MERGED

2007/10/26 16:28:42 pjanik 1.22.18.1: #i82983#: Prevent warning on unxlngx6.
This commit is contained in:
Rüdiger Timm
2007-11-13 13:20:50 +00:00
parent 0f4ff4240d
commit 63b71d1188

View File

@@ -4,9 +4,9 @@
*
* $RCSfile: sunjavaplugin.cxx,v $
*
* $Revision: 1.22 $
* $Revision: 1.23 $
*
* last change: $Author: obo $ $Date: 2007-06-13 07:57:06 $
* last change: $Author: rt $ $Date: 2007-11-13 14:20:50 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -450,7 +450,9 @@ javaPluginError jfw_plugin_startJavaVirtualMachine(
JavaVM ** ppVm,
JNIEnv ** ppEnv)
{
osl::MutexGuard guard(PluginMutex::get());
// unless guard is volatile the following warning occurs on gcc:
// warning: variable 't' might be clobbered by `longjmp' or `vfork'
volatile osl::MutexGuard guard(PluginMutex::get());
// unless errcode is volatile the following warning occurs on gcc:
// warning: variable 'errcode' might be clobbered by `longjmp' or `vfork'
volatile javaPluginError errcode = JFW_PLUGIN_E_NONE;