c90bbb3be9
* fix crash in nsImapProtocol::CreateNewLineFromSocket (bmo#1667120) - Mozilla Thunderbird 78.3.0 MFSA 2020-44 (bsc#1176756) * CVE-2020-15677 (bmo#1641487) Download origin spoofing via redirect * CVE-2020-15676 (bmo#1646140) XSS when pasting attacker-controlled data into a contenteditable element * CVE-2020-15678 (bmo#1660211) When recursing through layers while scrolling, an iterator may have become invalid, resulting in a potential use-after- free scenario * CVE-2020-15673 (bmo#1648493, bmo#1660800) Memory safety bugs fixed in Thunderbird 78.3 - requires NSPR >= 4.25.1 - removed obsolete thunderbird-bmo1664607.patch - Mozilla Thunderbird 78.2.2 https://www.thunderbird.net/en-US/thunderbird/78.2.2/releasenotes - added thunderbird-bmo1664607.patch required for builds w/o updater (boo#1176384) - Mozilla Thunderbird 78.2.1 * based on Mozilla's 78 ESR codebase * many new and changed features https://www.thunderbird.net/en-US/thunderbird/78.0/releasenotes/#whatsnew * built-in OpenPGP support (enigmail neither required nor supported) OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaThunderbird?expand=0&rev=549
31 lines
1.1 KiB
Diff
31 lines
1.1 KiB
Diff
# HG changeset patch
|
|
# User msirringhaus@suse.de
|
|
# Date 1558452418 -7200
|
|
# Tue May 21 17:26:58 2019 +0200
|
|
# Node ID 6cd963b6c82ea6629aaf4050851789b78f310338
|
|
# Parent 010a35335b4e45e222b9efdbda24fd1963202ecf
|
|
imported patch mozilla-ppc-altivec_static_inline.patch
|
|
|
|
diff --git a/gfx/qcms/transform-altivec.cpp b/gfx/qcms/transform-altivec.cpp
|
|
--- a/gfx/qcms/transform-altivec.cpp
|
|
+++ b/gfx/qcms/transform-altivec.cpp
|
|
@@ -25,17 +25,17 @@
|
|
|
|
#include "qcmsint.h"
|
|
|
|
#define FLOATSCALE (float)(PRECACHE_OUTPUT_SIZE)
|
|
#define CLAMPMAXVAL (((float) (PRECACHE_OUTPUT_SIZE - 1)) / PRECACHE_OUTPUT_SIZE)
|
|
static const ALIGN float floatScaleX4 = FLOATSCALE;
|
|
static const ALIGN float clampMaxValueX4 = CLAMPMAXVAL;
|
|
|
|
-inline vector float load_aligned_float(float *dataPtr)
|
|
+static inline vector float load_aligned_float(float *dataPtr)
|
|
{
|
|
vector float data = vec_lde(0, dataPtr);
|
|
vector unsigned char moveToStart = vec_lvsl(0, dataPtr);
|
|
return vec_perm(data, data, moveToStart);
|
|
}
|
|
|
|
template <size_t kRIndex, size_t kGIndex, size_t kBIndex, size_t kAIndex = NO_A_INDEX>
|
|
static void qcms_transform_data_template_lut_altivec(const qcms_transform *transform,
|