diff options
author | Matt A. Tobin <email@mattatobin.com> | 2022-04-09 03:03:10 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2022-04-09 03:21:13 -0500 |
commit | 560e198a58ffc3b1a135e8879f7c2613e2f72bae (patch) | |
tree | 2fba61f183baf1d294c62ec9f5c433eb918d9082 /libs/nss/src/lib/util/nssutil.h | |
parent | cb30ae76259a4d4fbdae48504c73e9bc67da9cd7 (diff) | |
download | aura-central-560e198a58ffc3b1a135e8879f7c2613e2f72bae.tar.gz |
[NSS/SEC?] Best Guess is a reduced scope CVE-2022-1097
Bug 1745667 - Use-after-free in NSSToken objects
I don't know why this bug number isn't the same as the one which ACTUALLY changed this functionality or why Moonzilla only went this far. However, it seems to work as-is but it may be reverted for a more complete patch based on the full bug changes.
See also: https://hg.mozilla.org/projects/nss/rev/d7e8c2df6bcaa2d723c94659e67b033a0bdd5ab2
This also bumps the NSS Version to 3.64.1.4 where [Major].[Minor].[Aura Patch].[UXP Patch]
Diffstat (limited to 'libs/nss/src/lib/util/nssutil.h')
-rw-r--r-- | libs/nss/src/lib/util/nssutil.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/nss/src/lib/util/nssutil.h b/libs/nss/src/lib/util/nssutil.h index 78e12a790..cb57ddd3b 100644 --- a/libs/nss/src/lib/util/nssutil.h +++ b/libs/nss/src/lib/util/nssutil.h @@ -19,11 +19,11 @@ * The format of the version string should be * "<major version>.<minor version>[.<patch level>[.<build number>]][ <Beta>]" */ -#define NSSUTIL_VERSION "3.64" +#define NSSUTIL_VERSION "3.64.1.4" #define NSSUTIL_VMAJOR 3 #define NSSUTIL_VMINOR 64 -#define NSSUTIL_VPATCH 0 -#define NSSUTIL_VBUILD 0 +#define NSSUTIL_VPATCH 1 +#define NSSUTIL_VBUILD 4 #define NSSUTIL_BETA PR_FALSE SEC_BEGIN_PROTOS |