| Index: content/browser/indexed_db/indexed_db_cursor.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_cursor.cc b/content/browser/indexed_db/indexed_db_cursor.cc
|
| index cd8692d632cd6f7e5015a79e11a09f301bb121bb..a029b08242f58b2e1acc888ce612f1f9e3760cda 100644
|
| --- a/content/browser/indexed_db/indexed_db_cursor.cc
|
| +++ b/content/browser/indexed_db/indexed_db_cursor.cc
|
| @@ -140,7 +140,7 @@ void IndexedDBCursor::CursorPrefetchIterationOperation(
|
| if (i == 0) {
|
| // First prefetched result is always used, so that's the position
|
| // a cursor should be reset to if the prefetch is invalidated.
|
| - saved_cursor_.reset(cursor_->Clone());
|
| + saved_cursor_ = cursor_->Clone();
|
| }
|
|
|
| found_keys.push_back(cursor_->key());
|
|
|