Kaydet (Commit) d7b8a412 authored tarafından Michael Stahl's avatar Michael Stahl

spurious warning C4701: potentially uninitialized local variable

Change-Id: Ie1353d0251fab6f12b34fbd5d2d25d8b6e3e3c6b
üst 3adad743
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment