mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-08 05:24:39 +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();
|
cursor.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( null == result.fullSum ) { // force generation
|
if ( null != result && null == result.fullSum ) { // force generation
|
||||||
result = null;
|
result = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue