]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix n-i-bz fix bug in strspn replacement
authorPhilippe Waroquiers <philippe.waroquiers@skynet.be>
Thu, 26 Oct 2017 18:53:15 +0000 (20:53 +0200)
committerPhilippe Waroquiers <philippe.waroquiers@skynet.be>
Thu, 26 Oct 2017 18:53:15 +0000 (20:53 +0200)
Mix-up between UChar and HChar in strspn.
Also grouped together the n-i-bz announded fixes in NEWS

NEWS
shared/vg_replace_strmem.c

diff --git a/NEWS b/NEWS
index 11055cf5a76702ff5d1e2e2df6cb3872e0067863..3bb9ba2bd698a705a6530bc94a50aeca891acc8b 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -57,7 +57,6 @@ where XXXXXX is the bug number as listed below.
 384096  Mention AddrCheck at Memcheck's command line option --undef-value-errors=no
 384526  reduce number of spill instructions generated by VEX register allocator v3
 384584  Callee saved registers listed first for AMD64, X86, and PPC architectures
-n-i-bz  Fix missing workq_ops operations (macOS)
 384987  VEX register allocator: allocate caller-save registers for short lived vregs
 385182  PPC64 is missing support for the DSCR
 385207  PPC64, generate_store_FPRF() generates too many Iops
@@ -68,6 +67,9 @@ n-i-bz  Fix missing workq_ops operations (macOS)
 385868  glibc ld.so _dl_runtime_resolve_avx_slow conditional jump warning.
 385912  none/tests/rlimit_nofile fails on newer glibc/kernel.
 
+n-i-bz  Fix missing workq_ops operations (macOS)
+n-i-bz  fix bug in strspn replacement
+
 Release 3.13.0 (15 June 2017)
 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
index f2875fc2a66aa924662dccea15b95875d6730bb5..71c7e568c13ea921e329cef5febd2ee72eba4dcb 100644 (file)
@@ -1750,7 +1750,7 @@ static inline void my_exit ( int x )
       UWord len = 0; \
       while (1) { \
          UWord i; \
-         HChar sc = *s; \
+         UChar sc = *s; \
          if (sc == 0) \
             break; \
          for (i = 0; i < nacc; i++) { \