diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-09-09 20:29:21 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-09-09 20:32:19 +0100 |
commit | ab88b56072adb0eab7fffb03801515136a1c8c9a (patch) | |
tree | e34e7005f6d42fe8ae9c8bc50fb2b5efa1c49efb /vcl | |
parent | 0f5368434ef506aadfbd44613b7b98270e6a00c7 (diff) |
CID#1028323 uninitialized scalars
and CID#1028322
and CID#1028321
Change-Id: I6c151ef949755a17fa09c483d2f5f77b02fed08e
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/unx/generic/dtrans/X11_selection.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/unx/generic/dtrans/X11_selection.cxx b/vcl/unx/generic/dtrans/X11_selection.cxx index 53207ca900ba..7a36159ebec2 100644 --- a/vcl/unx/generic/dtrans/X11_selection.cxx +++ b/vcl/unx/generic/dtrans/X11_selection.cxx @@ -3223,8 +3223,8 @@ void SelectionManager::startDrag( // of our DropTargets at the time of executeDrag we can use // them for a start XLIB_Window aRoot, aParent, aChild; - int root_x, root_y, win_x, win_y; - unsigned int mask; + int root_x(0), root_y(0), win_x(0), win_y(0); + unsigned int mask(0); ::boost::unordered_map< XLIB_Window, DropTargetEntry >::const_iterator it; it = m_aDropTargets.begin(); |