OcAppleKernelLib: Fix weak symbol resolution.

This commit is contained in:
Download-Fritz 2019-03-29 15:58:44 +01:00
parent ff141b905a
commit 350ac16aec

View File

@ -447,15 +447,16 @@ InternalSolveSymbol64 (
}
}
*WeakTestValue = WeakTestSymbol->Value;
Value = WeakTestSymbol->Value;
*WeakTestValue = Value;
break;
}
}
}
if (Value != 0) {
InternalSolveSymbolValue64 (Value, Symbol);
return TRUE;
}
if (Value != 0) {
InternalSolveSymbolValue64 (Value, Symbol);
return TRUE;
}
}