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

coverity#1326290 Dereference after null check

Change-Id: I4a028603cbc413ecb670a39da49538819cd15242
üst a62d8270
......@@ -51,8 +51,9 @@ public class _XSingleLayerStratum extends MultiMethodTest {
if (aLayer == null) {
log.println("\treturned Layer is NULL -- FAILED");
}
res &= checkLayer(aLayer);
else {
res &= checkLayer(aLayer);
}
} catch (com.sun.star.configuration.backend.BackendAccessException e) {
log.println("unexpected Exception -- FAILED");
res = false;
......
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