cppcheck: fix uninitMemberVar for postgresql part

Change-Id: Id37b961ff04ec9cebcc9d35434ccfdff0b512235
This commit is contained in:
Julien Nabet
2013-06-16 21:39:19 +02:00
parent 21acf9d636
commit 0a52587c7a
2 changed files with 4 additions and 1 deletions

View File

@@ -105,6 +105,8 @@ struct ConnectionSettings
pConnection(0),
maxNameLen(0),
maxIndexKeys(0),
pTablesImpl(0),
pViewsImpl(0),
showSystemColumns( sal_False ),
logFile( 0 ),
loglevel( LogLevel::INFO )

View File

@@ -121,7 +121,8 @@ typedef ::boost::unordered_map
struct ImplementationStatics
{
ImplementationStatics() :
implementationId( 16 )
implementationId(16),
pProps(0)
{
rtl_createUuid( (sal_uInt8*)implementationId.getArray(), 0 , sal_False );
}