Skip to content

Commit 9492376

Browse files
committed
HashMapStorage: missing gil in call to keys message
1 parent 9590bfa commit 9492376

File tree

1 file changed

+1
-1
lines changed
  • graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/common

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/common/HashMapStorage.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ Object forEachUntyped(ForEachNode<Object> node, Object argIn, @Shared("gil") @Ca
330330
boolean mustRelease = gil.acquire();
331331
try {
332332
Object arg = argIn;
333-
for (Object key : keys()) {
333+
for (Object key : keys(gil)) {
334334
arg = node.execute(key, arg);
335335
}
336336
return arg;

0 commit comments

Comments
 (0)