diff options
Diffstat (limited to 'WebCore/storage/IDBKeyRange.cpp')
-rw-r--r-- | WebCore/storage/IDBKeyRange.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/WebCore/storage/IDBKeyRange.cpp b/WebCore/storage/IDBKeyRange.cpp index 34c11fe..9f22fc8 100644 --- a/WebCore/storage/IDBKeyRange.cpp +++ b/WebCore/storage/IDBKeyRange.cpp @@ -34,12 +34,10 @@ namespace WebCore { IDBKeyRange::IDBKeyRange(PassRefPtr<SerializedScriptValue> left, PassRefPtr<SerializedScriptValue> right, unsigned short flags) - : m_left(IDBAny::create()) - , m_right(IDBAny::create()) + : m_left(left) + , m_right(right) , m_flags(flags) { - m_left->set(left); - m_right->set(right); } } // namespace WebCore |