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

coverity#1326241 Dereference after null check

Change-Id: I54c00e1d4e5ebccf141293cd97d99efeebda1083
üst 585757d3
...@@ -308,7 +308,7 @@ public class WikiEditSettingDialog extends WikiDialog ...@@ -308,7 +308,7 @@ public class WikiEditSettingDialog extends WikiDialog
null, null,
false ); false );
} }
} while ( sRedirectURL.length() > 0 ); } while (sRedirectURL != null && sRedirectURL.length() > 0);
} }
catch ( WikiCancelException ce ) catch ( WikiCancelException ce )
{ {
......
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