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

coverity#983449 Unintended sign extension

also

coverity#983450

Change-Id: I43f88005ab130f74df2316f51ab898b112002044
üst 5a69d3af
......@@ -176,7 +176,7 @@ SwHTMLTableLayout::SwHTMLTableLayout( const SwTable * pSwTbl,
sal_uInt16 nInhLeftBWidth,
sal_uInt16 nInhRightBWidth )
: aColumns( new SwHTMLTableLayoutColumnPtr[nCls] )
, aCells( new SwHTMLTableLayoutCellPtr[nRws*nCls] )
, aCells( new SwHTMLTableLayoutCellPtr[static_cast<size_t>(nRws)*nCls] )
, pSwTable( pSwTbl )
, pLeftFillerBox( 0 )
, pRightFillerBox( 0 )
......
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