forked from pool/MozillaThunderbird
d30235b5b6
* After starting Thunderbird, the message list position was sometimes set to an incorrect position MFSA 2024-30 (bsc#1226316) * CVE-2024-6600 (bmo#1888340) Memory corruption in WebGL API * CVE-2024-6601 (bmo#1890748) Race condition in permission assignment * CVE-2024-6602 (bmo#1895032) Memory corruption in NSS * CVE-2024-6603 (bmo#1895081) Memory corruption in thread creation * CVE-2024-6604 (bmo#1748105, bmo#1837550, bmo#1884266) Memory safety bugs fixed in Firefox 128, Firefox ESR 115.13, and Thunderbird 115.13 OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaThunderbird?expand=0&rev=765
14 lines
368 B
Diff
14 lines
368 B
Diff
Index: firefox-102.4.0/mfbt/EnumSet.h
|
|
===================================================================
|
|
--- firefox-102.4.0.orig/mfbt/EnumSet.h
|
|
+++ firefox-102.4.0/mfbt/EnumSet.h
|
|
@@ -326,7 +326,7 @@ class EnumSet {
|
|
}
|
|
}
|
|
|
|
- static constexpr size_t kMaxBits = MaxBits();
|
|
+ static constexpr size_t kMaxBits = EnumSet().MaxBits();
|
|
|
|
Serialized mBitField;
|
|
|