forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-arch/bzip2: fix an error reported by ubsan
Use unsigned 1 for shifting instead of signed 1. Fix an issue with shift caught by undefined behavior sanitizer in clang. bzip2-1.0.6/blocksort.c:255:7 runtime error: left shift of 1 by 31 places cannot be represented in type 'int'. Closes: gentoo#9688 Signed-off-by: Thomas Deutschmann <[email protected]>
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Author: Manoj Gupta <[email protected]> | ||
|
||
Use unsigned 1 for shifting instead of signed 1. | ||
|
||
This fixed an issue with shift caught by undefined behavior | ||
sanitizer in clang. | ||
bzip2-1.0.6/blocksort.c:255:7 | ||
runtime error: left shift of 1 by 31 places cannot be represented in type 'int' | ||
|
||
--- a/blocksort.c | ||
+++ b/blocksort.c | ||
@@ -202,9 +202,9 @@ void fallbackQSort3 ( UInt32* fmap, | ||
bhtab [ 0 .. 2+(nblock/32) ] destroyed | ||
*/ | ||
|
||
-#define SET_BH(zz) bhtab[(zz) >> 5] |= (1 << ((zz) & 31)) | ||
-#define CLEAR_BH(zz) bhtab[(zz) >> 5] &= ~(1 << ((zz) & 31)) | ||
-#define ISSET_BH(zz) (bhtab[(zz) >> 5] & (1 << ((zz) & 31))) | ||
+#define SET_BH(zz) bhtab[(zz) >> 5] |= (1u << ((zz) & 31)) | ||
+#define CLEAR_BH(zz) bhtab[(zz) >> 5] &= ~(1u << ((zz) & 31)) | ||
+#define ISSET_BH(zz) (bhtab[(zz) >> 5] & (1u << ((zz) & 31))) | ||
#define WORD_BH(zz) bhtab[(zz) >> 5] | ||
#define UNALIGNED_BH(zz) ((zz) & 0x01f) | ||
|