diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-15 20:49:05 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-16 11:23:13 +0100 |
commit | 05551e886cded21a0df67a89f5dd7cf7b9e4de35 (patch) | |
tree | d518dfdc2633dd8f88508b6d91e48bc1e43e422d | |
parent | 98ef587cb1515e8c495cf00a3b143201233b8e25 (diff) |
coverity#1202939 Uninitialized pointer field
Change-Id: If5901fb36d6f0f5afbb12b92db7055d6481f7f23
-rw-r--r-- | vcl/source/filter/graphicfilter.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/vcl/source/filter/graphicfilter.cxx b/vcl/source/filter/graphicfilter.cxx index 8d80854c23dd..e96a55219377 100644 --- a/vcl/source/filter/graphicfilter.cxx +++ b/vcl/source/filter/graphicfilter.cxx @@ -1078,9 +1078,10 @@ ImpFilterLibCacheEntry* ImpFilterLibCache::GetFilter( const OUString& rFilterPat namespace { struct Cache : public rtl::Static<ImpFilterLibCache, Cache> {}; } -GraphicFilter::GraphicFilter( bool bConfig ) : - bUseConfig ( bConfig ), - nExpGraphHint ( 0 ) +GraphicFilter::GraphicFilter( bool bConfig ) + : pErrorEx(NULL) + , bUseConfig(bConfig) + , nExpGraphHint(0) { ImplInit(); } |