summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/source/component_context.cxx12
1 files changed, 7 insertions, 5 deletions
diff --git a/cppuhelper/source/component_context.cxx b/cppuhelper/source/component_context.cxx
index ed32764e9fa1..ef684e93bb36 100644
--- a/cppuhelper/source/component_context.cxx
+++ b/cppuhelper/source/component_context.cxx
@@ -741,12 +741,14 @@ void ComponentContext::disposing()
&envs, &envCount, &rtl_allocateMemory, OUString("java").pData);
assert(envCount >= 0);
assert(envCount == 0 || envs != nullptr);
- for (sal_Int32 i = 0; i != envCount; ++i) {
- assert(envs[i] != nullptr);
- assert(envs[i]->dispose != nullptr);
- (*envs[i]->dispose)(envs[i]);
+ if (envs) {
+ for (sal_Int32 i = 0; i != envCount; ++i) {
+ assert(envs[i] != nullptr);
+ assert(envs[i]->dispose != nullptr);
+ (*envs[i]->dispose)(envs[i]);
+ }
+ rtl_freeMemory(envs);
}
- rtl_freeMemory(envs);
}
ComponentContext::ComponentContext(