Kaydet (Commit) dcee310c authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#738942 Uninitialized scalar field

Change-Id: Icb5372e8fa8a91ae31eda551a4fa47ef8ed9cbe9
üst 64e29137
...@@ -924,6 +924,12 @@ ImplSalDDB::ImplSalDDB( ...@@ -924,6 +924,12 @@ ImplSalDDB::ImplSalDDB(
maTwoRect.mnSrcWidth = maTwoRect.mnDestWidth = nWidth; maTwoRect.mnSrcWidth = maTwoRect.mnDestWidth = nWidth;
maTwoRect.mnSrcHeight = maTwoRect.mnDestHeight = nHeight; maTwoRect.mnSrcHeight = maTwoRect.mnDestHeight = nHeight;
} }
else
{
maTwoRect.mnSrcX = maTwoRect.mnSrcY = maTwoRect.mnDestX = maTwoRect.mnDestY = 0;
maTwoRect.mnSrcWidth = maTwoRect.mnDestWidth = 0;
maTwoRect.mnSrcHeight = maTwoRect.mnDestHeight = 0;
}
} }
ImplSalDDB::~ImplSalDDB() ImplSalDDB::~ImplSalDDB()
......
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