File tree 2 files changed +25
-0
lines changed
pkgs/development/libraries/glibc
2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,8 @@ stdenv.mkDerivation ({
48
48
"/bin:/usr/bin", which is inappropriate on NixOS machines. This
49
49
patch extends the search path by "/run/current-system/sw/bin". */
50
50
./fix_path_attribute_in_getconf.patch
51
+
52
+ ./fix-i686-memchr.patch
51
53
] ;
52
54
53
55
postPatch =
Original file line number Diff line number Diff line change
1
+ Fix i686 memchr overflow calculation (BZ#21182)
2
+
3
+ https://sourceware.org/git/?p=glibc.git;a=commit;h=3abeeec5f46ff03
4
+ diff --git a/sysdeps/i386/i686/multiarch/memchr-sse2.S b/sysdeps/i386/i686/multiarch/memchr-sse2.S
5
+ index 910679c..e41f324 100644
6
+ --- a/sysdeps/i386/i686/multiarch/memchr-sse2.S
7
+ +++ b/sysdeps/i386/i686/multiarch/memchr-sse2.S
8
+ @@ -117,7 +117,6 @@ L(crosscache):
9
+
10
+ # ifndef USE_AS_RAWMEMCHR
11
+ jnz L(match_case2_prolog1)
12
+ - lea -16(%edx), %edx
13
+ /* Calculate the last acceptable address and check for possible
14
+ addition overflow by using satured math:
15
+ edx = ecx + edx
16
+ @@ -125,6 +124,7 @@ L(crosscache):
17
+ add %ecx, %edx
18
+ sbb %eax, %eax
19
+ or %eax, %edx
20
+ + sub $16, %edx
21
+ jbe L(return_null)
22
+ lea 16(%edi), %edi
23
+ # else
You can’t perform that action at this time.
0 commit comments