diff options
author | Gregory P. Smith <greg@krypto.org> | 2012-12-11 02:32:53 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2012-12-11 02:32:53 (GMT) |
commit | c2176e46d797c8aea60cdcd2ddf44f6bb88394b4 (patch) | |
tree | 5c4d898d216d25af779db557da42e1fccbb31e6d /Include/pyport.h | |
parent | c0dd80e439bff4bd7cd9acc34ae023b4e8adf4aa (diff) | |
parent | 27cbcd6241d787b5e99c6ed05ec8377051f397aa (diff) | |
download | cpython-c2176e46d797c8aea60cdcd2ddf44f6bb88394b4.zip cpython-c2176e46d797c8aea60cdcd2ddf44f6bb88394b4.tar.gz cpython-c2176e46d797c8aea60cdcd2ddf44f6bb88394b4.tar.bz2 |
Fix the internals of our hash functions to used unsigned values during hash
computation as the overflow behavior of signed integers is undefined.
NOTE: This change is smaller compared to 3.2 as much of this cleanup had
already been done. I added the comment that my change in 3.2 added so that the
code would match up. Otherwise this just adds or synchronizes appropriate UL
designations on some constants to be pedantic.
In practice we require compiling everything with -fwrapv which forces overflow
to be defined as twos compliment but this keeps the code cleaner for checkers
or in the case where someone has compiled it without -fwrapv or their
compiler's equivalent.
Found by Clang trunk's Undefined Behavior Sanitizer (UBSan).
Cleanup only - no functionality or hash values change.
Diffstat (limited to 'Include/pyport.h')
-rw-r--r-- | Include/pyport.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pyport.h b/Include/pyport.h index 41d9d42..e4e3601 100644 --- a/Include/pyport.h +++ b/Include/pyport.h @@ -145,7 +145,7 @@ Used in: PY_LONG_LONG #endif /* Prime multiplier used in string and various other hashes. */ -#define _PyHASH_MULTIPLIER 1000003 /* 0xf4243 */ +#define _PyHASH_MULTIPLIER 1000003UL /* 0xf4243 */ /* Parameters used for the numeric hash implementation. See notes for _Py_HashDouble in Objects/object.c. Numeric hashes are based on |