diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-06-18 14:33:25 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-06-18 14:33:49 +0100 |
commit | 207a2c3e2a44cb6b6c338a983dd2a72469f694ac (patch) | |
tree | df38f5125a8bd7bed5254bd4337b964d3b641b61 /include/vcl | |
parent | 3b0f8ece47f70f53b1462c824463c453b47c3020 (diff) |
coverity#1412875 Uninitialized pointer field
Change-Id: Ib9e40cdec5c8b87eaccf4ce941c0c8641b28e5c7
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/sysdata.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/vcl/sysdata.hxx b/include/vcl/sysdata.hxx index 18c4376c40a0..ae9e57f0344c 100644 --- a/include/vcl/sysdata.hxx +++ b/include/vcl/sysdata.hxx @@ -138,7 +138,10 @@ struct SystemGraphicsData #elif defined( IOS ) CGContextRef rCGContext; // CoreGraphics graphic context #elif defined( UNX ) + void* pDisplay; // the relevant display connection long hDrawable; // a drawable + void* pVisual; // the visual in use + int nScreen; // the current screen of the drawable void* pXRenderFormat; // render format for drawable #endif SystemGraphicsData() @@ -153,7 +156,10 @@ struct SystemGraphicsData #elif defined( IOS ) , rCGContext( NULL ) #elif defined( UNX ) + , pDisplay( nullptr ) , hDrawable( 0 ) + , pVisual( nullptr ) + , nScreen( 0 ) , pXRenderFormat( nullptr ) #endif { } |