Skip to Content.
Sympa Menu

sm-commit - [[SM-Commit] ] GIT changes to master grimoire by Pavel Vinogradov (8f3aafeddd9c344444bbfbf0443d3220218c2beb)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pavel Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org, sm-commit AT lists.sourcemage.org
  • Subject: [[SM-Commit] ] GIT changes to master grimoire by Pavel Vinogradov (8f3aafeddd9c344444bbfbf0443d3220218c2beb)
  • Date: Sat, 18 Oct 2025 17:47:47 +0000

GIT changes to master grimoire by Pavel Vinogradov <public AT sourcemage.org>:

http/firefox/HISTORY
| 3 +

http/firefox/patches/0023-bmo-1990430-make-autobuffer-trivially-copyable.patch
| 17 ++++++++++
2 files changed, 20 insertions(+)

New commits:
commit 8f3aafeddd9c344444bbfbf0443d3220218c2beb
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>

http/firefox: updated patches for 144.0

diff --git a/http/firefox/HISTORY b/http/firefox/HISTORY
index 00fc3cb..c94fad5 100644
--- a/http/firefox/HISTORY
+++ b/http/firefox/HISTORY
@@ -1,3 +1,6 @@
+2025-10-18 Pavel Vinogradov <public AT sourcemage.org>
+ * patches/*: updated
+
2025-10-14 Pavel Vinogradov <public AT sourcemage.org>
* DEPENDS: added pipewire, nodejs is optional now

diff --git
a/http/firefox/patches/0023-bmo-1990430-make-autobuffer-trivially-copyable.patch

b/http/firefox/patches/0023-bmo-1990430-make-autobuffer-trivially-copyable.patch
new file mode 100644
index 0000000..f57779e
--- /dev/null
+++
b/http/firefox/patches/0023-bmo-1990430-make-autobuffer-trivially-copyable.patch
@@ -0,0 +1,17 @@
+diff --git a/xpcom/ds/nsTArray.h b/xpcom/ds/nsTArray.h
+--- a/xpcom/ds/nsTArray.h
++++ b/xpcom/ds/nsTArray.h
+@@ -2970,11 +2970,11 @@
+ // FIXME: Conceptually `value_type mElements[N]`, but that upsets the
+ // hazard analysis, see bug 1880185.
+ char mStorage[sizeof(value_type) * N];
+ };
+ AutoBuffer() : mHdr{.mLength = 0, .mCapacity = N, .mIsAutoArray = true}
{}
+- ~AutoBuffer() {}
++ ~AutoBuffer() = default;
+ } mAutoBuf;
+ static_assert(offsetof(AutoBuffer, mStorage) == sizeof(nsTArrayHeader),
+ "Shouldn't have padding");
+ };
+
+


  • [[SM-Commit] ] GIT changes to master grimoire by Pavel Vinogradov (8f3aafeddd9c344444bbfbf0443d3220218c2beb), Pavel Vinogradov, 10/18/2025

Archive powered by MHonArc 2.6.24.

Top of Page