diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-05-26 11:11:14 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-05-26 12:23:19 +0100 |
commit | f76b927cc53f677128925e1353e3ecc44f105a77 (patch) | |
tree | 3b2a4c9e9ee4e15355a8f391bded59dfe56dad02 /svx/source/form | |
parent | bc28dde1891fd6e3b7ded3f2603aaf63a9111106 (diff) |
coverity#1409894 Dereference after null check
Change-Id: If475a0415c9faf98c978576743dbfdaa79d16d3f
Diffstat (limited to 'svx/source/form')
-rw-r--r-- | svx/source/form/datanavi.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/form/datanavi.cxx b/svx/source/form/datanavi.cxx index 5a382dbe6fd1..34ef5f81b31b 100644 --- a/svx/source/form/datanavi.cxx +++ b/svx/source/form/datanavi.cxx @@ -736,7 +736,7 @@ namespace svxform SAL_WARN( "svx.form", "XFormsPage::DoToolboxAction(): exception caught" ); } } - else + else if (pNode) { try { |