Chromium Code Reviews| Index: src/api.h |
| diff --git a/src/api.h b/src/api.h |
| index 2341c4c8fc59d809e708e04337ccdb97c2401152..78b3ca051c10503c104fd9de1631c8a92ce776d5 100644 |
| --- a/src/api.h |
| +++ b/src/api.h |
| @@ -400,7 +400,9 @@ class DeferredHandles { |
| DeferredHandles(DeferredHandles* next, Object** first_block_limit, |
| HandleScopeImplementer* impl) |
| : next_(next), previous_(NULL), first_block_limit_(first_block_limit), |
|
Jakob Kummerow
2012/07/12 07:22:23
nit: While you are at it, put each of these initia
|
| - impl_(impl) {} |
| + impl_(impl) { |
| + if (next != NULL) next->previous_ = this; |
| + } |
| void Iterate(ObjectVisitor* v); |