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

coverity#1326427 Dereference null return value

Change-Id: Id4ff5ab007e9ddbc28018570fe38abe9e5acb54b
üst 84db0196
......@@ -366,7 +366,7 @@ public abstract class SxcDocumentSerializer implements OfficeConstants,
SxcConstants.ROW_STYLE_FAMILY, null,
RowStyle.class);
int rowHeight = rStyle.getRowHeight();
int rowHeight = rStyle != null ? rStyle.getRowHeight() : 0;
Debug.log(Debug.TRACE, "traverseTableRow() Row Height : " + rowHeight);
ColumnRowInfo ri = new ColumnRowInfo( rowHeight,
......
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