Chromium Code Reviews| Index: src/handles-inl.h |
| =================================================================== |
| --- src/handles-inl.h (revision 1927) |
| +++ src/handles-inl.h (working copy) |
| @@ -44,8 +44,8 @@ |
| template <class T> |
| inline T* Handle<T>::operator*() const { |
| - ASSERT(location_ != NULL); |
| - ASSERT(reinterpret_cast<Address>(*location_) != kHandleZapValue); |
| + ASSERT(location_ != NULL && |
| + reinterpret_cast<Address>(*location_) != kHandleZapValue); |
| return *location_; |
| } |