diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-08-06 16:50:11 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-08-06 16:50:11 +0200 |
commit | 83e5c3e93d9a6f306973d25f6e0426b5d0d06d07 (patch) | |
tree | 2207e6afefd01e840afa23c0bc5a31c961876bd5 /external/nss/ubsan.patch.0 | |
parent | 46e03df0a7471a887e7cf403765b4de3582d9a1e (diff) |
left shift of 4276994303 by 32 places cannot be represented in type 'long'
Change-Id: Ie9ddc5a42116720e0602d7fb38360f01b71df69c
Diffstat (limited to 'external/nss/ubsan.patch.0')
-rw-r--r-- | external/nss/ubsan.patch.0 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/external/nss/ubsan.patch.0 b/external/nss/ubsan.patch.0 new file mode 100644 index 000000000000..298ca40d5c09 --- /dev/null +++ b/external/nss/ubsan.patch.0 @@ -0,0 +1,13 @@ +--- nss/lib/libpkix/pkix/util/pkix_tools.h ++++ nss/lib/libpkix/pkix/util/pkix_tools.h +@@ -1458,8 +1458,8 @@ + + extern PRLogModuleInfo *pkixLog; + +-#define PKIX_MAGIC_HEADER LL_INIT(0xFEEDC0FF, 0xEEFACADE) +-#define PKIX_MAGIC_HEADER_DESTROYED LL_INIT(0xBAADF00D, 0xDEADBEEF) ++#define PKIX_MAGIC_HEADER LL_INIT(0xFEEDC0FFU, 0xEEFACADEU) ++#define PKIX_MAGIC_HEADER_DESTROYED LL_INIT(0xBAADF00DU, 0xDEADBEEFU) + + /* see source file for function documentation */ + |