mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-27 09:58:45 +01:00
fix compile warning by passing ptr to embedded super
This commit is contained in:
parent
dddec50f1d
commit
63c0c5cf09
1 changed files with 1 additions and 1 deletions
|
@ -564,7 +564,7 @@ makeDict( MPFORMAL JNIEnv *env, JNIUtilCtxt* jniutil, jstring jname,
|
|||
XP_U32 numEdges;
|
||||
XP_Bool parses = parseDict( anddict, (XP_U8*)anddict->bytes,
|
||||
len, &numEdges );
|
||||
if ( !parses || (check && !checkSanity( anddict, numEdges ) ) ) {
|
||||
if ( !parses || (check && !checkSanity( &anddict->super, numEdges ) ) ) {
|
||||
and_dictionary_destroy( (DictionaryCtxt*)anddict );
|
||||
anddict = NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue