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

coverity#1326383 Dereference null return value

Change-Id: Iaa1769e4ecf116bfbab32b9ef6f6413e25a5f5fe
üst 56d43328
......@@ -349,10 +349,12 @@ public class StyleApplier
String sFilePath = getStylePath() + "/" + _filename;
int[] oStylePropList = new int[6];
String[] sData = FileAccess.getDataFromTextFile(xMSF, sFilePath);
if (sData != null) {
oStylePropList[SOBACKGROUNDCOLOR] = getStyleColor(sData, ".toctitle {", "background-color:");
oStylePropList[SODBTEXTCOLOR] = getStyleColor(sData, ".doctitle {", "color:");
oStylePropList[SOLABELTEXTCOLOR] = getStyleColor(sData, ".toctitle {", "color:");
oStylePropList[SOBORDERCOLOR] = getStyleColor(sData, ".tcolor {", "border-color:");
}
return oStylePropList;
}
......
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