mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
fix NPE
This commit is contained in:
parent
76299a34f9
commit
1883f83033
1 changed files with 1 additions and 1 deletions
|
@ -2086,7 +2086,7 @@ public class DBUtils {
|
|||
cursor.close();
|
||||
}
|
||||
|
||||
if ( null == result.fullSum ) { // force generation
|
||||
if ( null != result && null == result.fullSum ) { // force generation
|
||||
result = null;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue