We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ead0db commit 08daf0eCopy full SHA for 08daf0e
src/coreclr/vm/dacenumerablehash.inl
@@ -345,7 +345,10 @@ DPTR(VALUE) DacEnumerableHashTable<DAC_ENUM_HASH_ARGS>::BaseFindFirstEntryByHash
345
do
346
{
347
DWORD cBuckets = GetLength(curBuckets);
348
+// DAC hardening for invalid process state
349
+#ifdef DACCESS_COMPILE
350
if (cBuckets > 0)
351
+#endif
352
353
// Compute which bucket the entry belongs in based on the hash.
354
// +2 to skip "length" and "next" slots
0 commit comments