cppuhelper: valgrind complains about uninitialized variable...
... cppuhelper::ServcieManager::Data::Implementation::dispose Change-Id: I70a96e608f17eb6630326bbf32fff5fb5d7d4569
This commit is contained in:
@@ -105,7 +105,8 @@ public:
|
|||||||
new ImplementationInfo(
|
new ImplementationInfo(
|
||||||
name, loader, uri, environment, constructorName, prefix,
|
name, loader, uri, environment, constructorName, prefix,
|
||||||
alienContext, rdbFile)),
|
alienContext, rdbFile)),
|
||||||
constructor(0), status(STATUS_NEW)
|
constructor(0), status(STATUS_NEW),
|
||||||
|
dispose(false)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
Implementation(
|
Implementation(
|
||||||
@@ -118,7 +119,8 @@ public:
|
|||||||
theComponent):
|
theComponent):
|
||||||
info(new ImplementationInfo(name)), constructor(0),
|
info(new ImplementationInfo(name)), constructor(0),
|
||||||
factory1(theFactory1), factory2(theFactory2),
|
factory1(theFactory1), factory2(theFactory2),
|
||||||
component(theComponent), status(STATUS_LOADED)
|
component(theComponent), status(STATUS_LOADED),
|
||||||
|
dispose(false)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
css::uno::Reference<css::uno::XInterface> createInstance(
|
css::uno::Reference<css::uno::XInterface> createInstance(
|
||||||
|
Reference in New Issue
Block a user