Skip to content

Commit 0a544d2

Browse files
committed
Release 3.8
1 parent fb7b4fc commit 0a544d2

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ Changes in 3.8
55
- Fixed wrong *printf_s \0 termination. Broken since 3.7. GH #124.
66
- Fixed getenv_s to not handle_error for non-existent env var. GH #119
77
- Added a single include/safec.h for all 3 public headers. GH #114
8+
- Changed wording of Null termination to Zero termination. GH #130
9+
- Improve arm/aarch64 MEMORY_BARRIER, GH #116
10+
- strpbrk_s: check for slen overflow or early exit,
11+
- Update to Unicode 15.0
812

913
Changes in 3.7.1
1014
- Fixed powerpc compilation of the perf tests. GH #113

build-aux/smoke.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Linux)
136136
make -s -j4 check-log || exit
137137
make -s clean
138138
fi
139-
for clang in clang clang-{11,10,7,5.0}
139+
for clang in clang clang-{17,16,15,14,13,12,11,10,7,5.0}
140140
do
141141
if test -n `which $clang`; then
142142
echo $clang -march=native --disable-constraint-handler --enable-unsafe --enable-norm-compat
@@ -169,7 +169,7 @@ Linux)
169169
fi
170170
#CC="g++-6 -std=c++11" ./configure && \
171171
# make -s -j4 check-log || exit
172-
for gcc in gcc-{12,11,10,9,8,7,6,5}
172+
for gcc in gcc-{13,12,11,10,9,8,7,6,5}
173173
do
174174
if test -n "`which $gcc`"; then
175175
if CC="$gcc" ./configure; then

tests/test_vsnprintf_s.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*------------------------------------------------------------------
22
* test_vsnprintf_s
33
* File 'wchar/vsnprintf_s.c'
4-
* Lines executed:40.25% of 487
4+
* Lines executed:40.37% of 488
55
*
66
*------------------------------------------------------------------
77
*/

tests/test_wcsnorm_s.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*------------------------------------------------------------------
22
* test_wcsnorm_s
33
* File 'wcsnorm_s.c'
4-
* Lines executed:75.82% of 364
4+
* Lines executed:74.27% of 377
55
*
66
*------------------------------------------------------------------
77
*/

0 commit comments

Comments
 (0)