| Index: Source/modules/indexeddb/IDBCursor.h
|
| diff --git a/Source/modules/indexeddb/IDBCursor.h b/Source/modules/indexeddb/IDBCursor.h
|
| index 0c8831f6e3363276fbcbf18696bfc68add787516..47419767850cd02606e296df955b48bcfc17a034 100644
|
| --- a/Source/modules/indexeddb/IDBCursor.h
|
| +++ b/Source/modules/indexeddb/IDBCursor.h
|
| @@ -93,10 +93,10 @@ private:
|
| const WebIDBCursorDirection m_direction;
|
| Member<IDBAny> m_source;
|
| Member<IDBTransaction> m_transaction;
|
| - bool m_gotValue;
|
| - bool m_keyDirty;
|
| - bool m_primaryKeyDirty;
|
| - bool m_valueDirty;
|
| + bool m_gotValue = false;
|
| + bool m_keyDirty = true;
|
| + bool m_primaryKeyDirty = true;
|
| + bool m_valueDirty = true;
|
| Member<IDBKey> m_key;
|
| Member<IDBKey> m_primaryKey;
|
| RefPtr<IDBValue> m_value;
|
|
|