| Index: third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp b/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp
|
| index 5998bfb2a631ef9393e6a127350e9dc93998c094..a54de38ee4df0d414d6144ebe92c23c4ca407c10 100644
|
| --- a/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp
|
| +++ b/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp
|
| @@ -59,7 +59,8 @@ ScriptValue SQLResultSetRowList::item(ScriptState* scriptState,
|
|
|
| Vector<std::pair<String, SQLValue>> dataArray;
|
| for (unsigned i = 0; i < numColumns; ++i)
|
| - dataArray.append(std::make_pair(m_columns[i], m_result[valuesIndex + i]));
|
| + dataArray.push_back(
|
| + std::make_pair(m_columns[i], m_result[valuesIndex + i]));
|
|
|
| return ScriptValue::from(scriptState, dataArray);
|
| }
|
|
|