Skip to content

Commit

Permalink
Fixed Ourpalm#258
Browse files Browse the repository at this point in the history
  • Loading branch information
liiir1985 committed Apr 1, 2020
1 parent 8391483 commit 84d3910
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ILRuntime/Runtime/Enviorment/AppDomain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1267,7 +1267,7 @@ internal long GetStaticFieldIndex(object token, IType contextType, IMethod conte

internal long CacheString(object token)
{
long oriHash = token.GetHashCode();
long oriHash = token.GetHashCode() & 0xFFFFFFFF;
long hashCode = oriHash;
string str = (string)token;
lock (mapString)
Expand Down

0 comments on commit 84d3910

Please sign in to comment.