Index: src/objects.cc |
diff --git a/src/objects.cc b/src/objects.cc |
index 6265e05211b9bba0b50a536d315afb65ade32db8..f88857332f7dae8245a8c456bb715e81efdd1e80 100644 |
--- a/src/objects.cc |
+++ b/src/objects.cc |
@@ -17656,6 +17656,7 @@ class StringTableNoAllocateKey : public HashTableKey { |
string->set_hash_field(hash_field); |
} else { |
special_flattening_ = false; |
+ one_byte_content_ = nullptr; |
} |
hash_ = string->Hash(); |
} |
@@ -17744,7 +17745,7 @@ class StringTableNoAllocateKey : public HashTableKey { |
bool special_flattening_; |
uint32_t hash_ = 0; |
union { |
- uint8_t* one_byte_content_ = nullptr; |
+ uint8_t* one_byte_content_; |
uint16_t* two_byte_content_; |
}; |
}; |