File tree 3 files changed +8
-6
lines changed
3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 1
1
2
2
ChangeLog file for safeclib
3
3
4
+ Changes in v17102019 3.5.2
5
+ - Fixed mbsrtowcs_s error message prefix.
6
+ - Fixed t_mbsrtowcs_s.exe compilation under newer mingw gcc.
7
+
4
8
Changes in v16102019 3.5.1
5
9
- Fixed memset_s for the upper 4 bits of 64 bit words (GH #73)
6
10
- Fixed strncat_s error handling for slen exceeds src.
Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ CC="clang-mp-5.0" \
28
28
./configure --disable-shared --enable-unsafe --enable-norm-compat && \
29
29
gmake -s -j4 check-log || exit
30
30
gmake -s -j4 clean
31
- echo clang-mp-3.9 -fsanitize=address -fno-omit-frame-pointer --enable-debug --enable-unsafe --enable-norm-compat
32
- CC=" clang-mp-3.9 -fsanitize=address -fno-omit-frame-pointer" \
31
+ echo clang-mp-8.0 -fsanitize=address -fno-omit-frame-pointer --enable-debug --enable-unsafe --enable-norm-compat
32
+ CC=" clang-mp-8.0 -fsanitize=address -fno-omit-frame-pointer" \
33
33
./configure --enable-debug --enable-unsafe --enable-norm-compat && \
34
34
gmake -s -j4 check-log || exit
35
35
gmake -s -j4 clean
Original file line number Diff line number Diff line change 73
73
#define _GNU_SOURCE
74
74
#include <stdio.h>
75
75
#include <string.h>
76
-
77
- /* for malloc/free */
78
- #if defined(HAVE_STDLIB_H ) && (defined(HAVE___BND_CHK_PTR_BOUNDS ) || \
79
- defined(HAVE___BUILTIN___BND_SET_PTR_BOUNDS ))
76
+ /* for malloc/free and mingw BOS */
77
+ #ifdef HAVE_STDLIB_H
80
78
#include <stdlib.h>
81
79
#endif
82
80
You can’t perform that action at this time.
0 commit comments