diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-11-13 13:23:55 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-11-13 13:25:17 +0100 |
commit | d7b8a41282800e9e7d2b44deae372dd23435e444 (patch) | |
tree | dab26b19a2a543b3a6da6c66a95e40acb248480c /vcl/source | |
parent | 3adad743e7702a5403927c89d2d19534509c7085 (diff) |
spurious warning C4701: potentially uninitialized local variable
Change-Id: Ie1353d0251fab6f12b34fbd5d2d25d8b6e3e3c6b
Diffstat (limited to 'vcl/source')
-rw-r--r-- | vcl/source/gdi/bitmap4.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/gdi/bitmap4.cxx b/vcl/source/gdi/bitmap4.cxx index 9236308549df..ced810a4667b 100644 --- a/vcl/source/gdi/bitmap4.cxx +++ b/vcl/source/gdi/bitmap4.cxx @@ -788,8 +788,8 @@ bool Bitmap::ImplMosaic( const BmpFilterParam* pFilterParam, const Link* /*pProg } bool bConditionsMet = false; - long nWidth; - long nHeight; + long nWidth(0); + long nHeight(0); if (pReadAcc && pWriteAcc) { nWidth = pReadAcc->Width(); |