summaryrefslogtreecommitdiff
path: root/mozilla-1601707.patch
diff options
context:
space:
mode:
authorJan Horak <jhorak@redhat.com>2020-01-07 13:46:52 +0100
committerJan Horak <jhorak@redhat.com>2020-01-07 13:46:52 +0100
commit301ffd6239f7804c54a36ae57ecb37189e9df402 (patch)
tree87f64652983ad0c10051c2ee9dff990b97b7b841 /mozilla-1601707.patch
parentDo not change config.guess in the third_party/rust subdir because it breaks c... (diff)
downloadlibrewolf-fedora-ff-301ffd6239f7804c54a36ae57ecb37189e9df402.tar.gz
librewolf-fedora-ff-301ffd6239f7804c54a36ae57ecb37189e9df402.tar.bz2
librewolf-fedora-ff-301ffd6239f7804c54a36ae57ecb37189e9df402.zip
For for mozbz#1601707 - segfault in doDatabaseWork - not working addons
Diffstat (limited to 'mozilla-1601707.patch')
-rw-r--r--mozilla-1601707.patch84
1 files changed, 17 insertions, 67 deletions
diff --git a/mozilla-1601707.patch b/mozilla-1601707.patch
index 7002c6d..1a0ab4f 100644
--- a/mozilla-1601707.patch
+++ b/mozilla-1601707.patch
@@ -1,7 +1,7 @@
-diff -up firefox-71.0/dom/indexedDB/ActorsParent.cpp.gcc-workaround firefox-71.0/dom/indexedDB/ActorsParent.cpp
---- firefox-71.0/dom/indexedDB/ActorsParent.cpp.gcc-workaround 2019-12-02 13:22:58.000000000 +0100
-+++ firefox-71.0/dom/indexedDB/ActorsParent.cpp 2019-12-08 21:52:54.449199120 +0100
-@@ -24311,11 +24311,11 @@ nsresult ObjectStoreAddOrPutRequestOp::D
+diff -up firefox-72.0/dom/indexedDB/ActorsParent.cpp.mozilla-1601707 firefox-72.0/dom/indexedDB/ActorsParent.cpp
+--- firefox-72.0/dom/indexedDB/ActorsParent.cpp.mozilla-1601707 2020-01-03 19:57:54.000000000 +0100
++++ firefox-72.0/dom/indexedDB/ActorsParent.cpp 2020-01-07 13:33:31.950688264 +0100
+@@ -24617,11 +24617,11 @@ nsresult ObjectStoreAddOrPutRequestOp::D
// if we allow overwrite or not. By not allowing overwrite we raise
// detectable errors rather than corrupting data.
DatabaseConnection::CachedStatement stmt;
@@ -17,69 +17,18 @@ diff -up firefox-71.0/dom/indexedDB/ActorsParent.cpp.gcc-workaround firefox-71.0
NS_LITERAL_CSTRING("INTO object_data "
"(object_store_id, key, file_ids, data) "
"VALUES (:") +
-@@ -25869,11 +25869,8 @@ void Cursor::OpenOp::PrepareIndexKeyCond
- }
- }
-
-- const auto& comparisonChar =
-- isIncreasingOrder ? NS_LITERAL_CSTRING(">") : NS_LITERAL_CSTRING("<");
--
- mCursor->mContinueToQuery =
-- aQueryStart + NS_LITERAL_CSTRING(" AND sort_column ") + comparisonChar +
-+ aQueryStart + NS_LITERAL_CSTRING(" AND sort_column ") + (isIncreasingOrder ? NS_LITERAL_CSTRING(">") : NS_LITERAL_CSTRING("<")) +
- NS_LITERAL_CSTRING("= :") + kStmtParamNameCurrentKey;
-
- switch (mCursor->mDirection) {
-@@ -25881,11 +25878,11 @@ void Cursor::OpenOp::PrepareIndexKeyCond
- case IDBCursor::PREV:
- mCursor->mContinueQuery =
- aQueryStart + NS_LITERAL_CSTRING(" AND sort_column ") +
-- comparisonChar + NS_LITERAL_CSTRING("= :") +
-+ (isIncreasingOrder ? NS_LITERAL_CSTRING(">") : NS_LITERAL_CSTRING("<")) + NS_LITERAL_CSTRING("= :") +
- kStmtParamNameCurrentKey + NS_LITERAL_CSTRING(" AND ( sort_column ") +
-- comparisonChar + NS_LITERAL_CSTRING(" :") + kStmtParamNameCurrentKey +
-+ (isIncreasingOrder ? NS_LITERAL_CSTRING(">") : NS_LITERAL_CSTRING("<")) + NS_LITERAL_CSTRING(" :") + kStmtParamNameCurrentKey +
- NS_LITERAL_CSTRING(" OR ") + aObjectDataKeyPrefix +
-- NS_LITERAL_CSTRING("object_data_key ") + comparisonChar +
-+ NS_LITERAL_CSTRING("object_data_key ") + (isIncreasingOrder ? NS_LITERAL_CSTRING(">") : NS_LITERAL_CSTRING("<")) +
- NS_LITERAL_CSTRING(" :") + kStmtParamNameObjectStorePosition +
- NS_LITERAL_CSTRING(" ) ");
-
-@@ -25896,12 +25893,12 @@ void Cursor::OpenOp::PrepareIndexKeyCond
- "(sort_column == :") +
- kStmtParamNameCurrentKey + NS_LITERAL_CSTRING(" AND ") +
- aObjectDataKeyPrefix + NS_LITERAL_CSTRING("object_data_key ") +
-- comparisonChar + NS_LITERAL_CSTRING("= :") +
-+ (isIncreasingOrder ? NS_LITERAL_CSTRING(">") : NS_LITERAL_CSTRING("<")) + NS_LITERAL_CSTRING("= :") +
- kStmtParamNameObjectStorePosition +
- NS_LITERAL_CSTRING(
- ") OR "
- "sort_column ") +
-- comparisonChar + NS_LITERAL_CSTRING(" :") + kStmtParamNameCurrentKey +
-+ (isIncreasingOrder ? NS_LITERAL_CSTRING(">") : NS_LITERAL_CSTRING("<")) + NS_LITERAL_CSTRING(" :") + kStmtParamNameCurrentKey +
- NS_LITERAL_CSTRING(")");
- break;
-
-@@ -25909,7 +25906,7 @@ void Cursor::OpenOp::PrepareIndexKeyCond
- case IDBCursor::PREV_UNIQUE:
- mCursor->mContinueQuery =
- aQueryStart + NS_LITERAL_CSTRING(" AND sort_column ") +
-- comparisonChar + NS_LITERAL_CSTRING(" :") + kStmtParamNameCurrentKey;
-+ (isIncreasingOrder ? NS_LITERAL_CSTRING(">") : NS_LITERAL_CSTRING("<")) + NS_LITERAL_CSTRING(" :") + kStmtParamNameCurrentKey;
- break;
-
- default:
-@@ -26076,9 +26073,6 @@ nsresult Cursor::OpenOp::DoIndexDatabase
+@@ -26457,10 +26457,6 @@ nsresult Cursor::OpenOp::DoIndexDatabase
const bool usingKeyRange = mOptionalKeyRange.isSome();
- const auto& indexTable = mCursor->mUniqueIndex
- ? NS_LITERAL_CSTRING("unique_index_data")
- : NS_LITERAL_CSTRING("index_data");
-
- NS_NAMED_LITERAL_CSTRING(sortColumn, "sort_column");
-
-@@ -26099,7 +26093,9 @@ nsresult Cursor::OpenOp::DoIndexDatabase
+-
+ // The result of MakeColumnPairSelectionList is stored in a local variable,
+ // since inlining it into the next statement causes a crash on some Mac OS X
+ // builds (see https://bugzilla.mozilla.org/show_bug.cgi?id=1168606#c110).
+@@ -26478,7 +26474,9 @@ nsresult Cursor::OpenOp::DoIndexDatabase
"object_data.file_ids, "
"object_data.data "
"FROM ") +
@@ -90,17 +39,18 @@ diff -up firefox-71.0/dom/indexedDB/ActorsParent.cpp.gcc-workaround firefox-71.0
NS_LITERAL_CSTRING(
" AS index_table "
"JOIN object_data "
-@@ -26198,9 +26194,6 @@ nsresult Cursor::OpenOp::DoIndexKeyDatab
+@@ -26563,10 +26561,6 @@ nsresult Cursor::OpenOp::DoIndexKeyDatab
const bool usingKeyRange = mOptionalKeyRange.isSome();
- const auto& table = mCursor->mUniqueIndex
- ? NS_LITERAL_CSTRING("unique_index_data")
- : NS_LITERAL_CSTRING("index_data");
-
- NS_NAMED_LITERAL_CSTRING(sortColumn, "sort_column");
-
-@@ -26218,7 +26211,10 @@ nsresult Cursor::OpenOp::DoIndexKeyDatab
+-
+ // The result of MakeColumnPairSelectionList is stored in a local variable,
+ // since inlining it into the next statement causes a crash on some Mac OS X
+ // builds (see https://bugzilla.mozilla.org/show_bug.cgi?id=1168606#c110).
+@@ -26581,7 +26575,10 @@ nsresult Cursor::OpenOp::DoIndexKeyDatab
NS_LITERAL_CSTRING(
"object_data_key "
" FROM ") +
@@ -111,4 +61,4 @@ diff -up firefox-71.0/dom/indexedDB/ActorsParent.cpp.gcc-workaround firefox-71.0
+ NS_LITERAL_CSTRING(" WHERE index_id = :") +
kStmtParamNameId;
- const auto keyRangeClause =
+ const auto keyRangeClause = MaybeGetBindingClauseForKeyRange(
bgstack15