mirror of
https://github.com/openjdk/jdk.git
synced 2026-03-25 23:29:55 +00:00
Merge
This commit is contained in:
commit
cb39f52a3a
@ -81,6 +81,12 @@ public class CompactHashTable extends VMObject {
|
||||
}
|
||||
|
||||
public Symbol probe(byte[] name, long hash) {
|
||||
|
||||
if (bucketCount() == 0) {
|
||||
// The table is invalid, so don't try to lookup
|
||||
return null;
|
||||
}
|
||||
|
||||
long symOffset;
|
||||
Symbol sym;
|
||||
Address baseAddress = baseAddressField.getValue(addr);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user