Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(760)

Unified Diff: src/objects.cc

Issue 253513004: Fix for a GC-stress failures after r20987. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/factory.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index dd1daf37ce238b1530e48a03284994b755f69f29..08f4a445b3c1d2f4ebda7c9df03480db86205d14 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -14527,7 +14527,7 @@ class InternalizedStringKey : public HashTableKey {
}
// Otherwise allocate a new internalized string.
return isolate->factory()->NewInternalizedStringImpl(
- *string_, string_->length(), string_->hash_field());
+ string_, string_->length(), string_->hash_field());
}
static uint32_t StringHash(Object* obj) {
« no previous file with comments | « src/factory.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698