Skip to content

Commit 7189350

Browse files
committed
Fix: the fix of a typo;
1 parent defa979 commit 7189350

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kernel/daoOptimizer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6069,7 +6069,7 @@ int DaoInferencer_DoInference( DaoInferencer *self )
60696069
if( data->type == DAO_NONE ) goto NotPermit;
60706070
if( data->xBase.subtype == DAO_OBJECT_VARIABLE && at->tid ==DAO_CLASS ) goto NeedInstVar;
60716071
if( data->type != DAO_CONSTANT || data->xConst.value->type != DAO_ROUTINE ) goto NotMatch;
6072-
meth = (DaoRoutine*) value->xConst.value;
6072+
meth = (DaoRoutine*) data->xConst.value;
60736073
break;
60746074
case DAO_INTERFACE :
60756075
node = DMap_Find( at->aux->xInterface.methods, mbs );

0 commit comments

Comments
 (0)