Skip to content

Commit ce5f1fd

Browse files
committed
Release v16102019 3.5.1
See ChangeLog Bump ABI revision to 3:6:0
1 parent 19857ca commit ce5f1fd

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

ChangeLog

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11

22
ChangeLog file for safeclib
33

4+
Changes in v16102019 3.5.1
5+
- Fixed memset_s for the upper 4 bits of 64 bit words (GH #73)
6+
- Fixed strncat_s error handling for slen exceeds src.
7+
clear dest, not src (GH #73)
8+
- Fixed vswprintf_s by checking for failing malloc (GH #78)
9+
- Several minor test improvements
10+
411
Changes in v04062019 3.5.0
512
- Updated towctrans case-mappings and normalization to Unicode 12.1
613
Even the canon tables on windows need now a special bsearch in an

configure.ac

+2-2
Original file line numberDiff line numberDiff line change
@@ -972,8 +972,8 @@ AC_SUBST([TARBALL_VERSION_FILE])
972972
# version information, refer to the libtool manual, section "Updating
973973
# library version information":
974974
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
975-
AC_SUBST([SAFEC_SO_VERSION], [3:5:0])
976-
AC_SUBST([SAFEC_API_VERSION], [3.5])
975+
AC_SUBST([SAFEC_SO_VERSION], [3:6:0])
976+
AC_SUBST([SAFEC_API_VERSION], [3.5.1])
977977

978978
# Automake variables, these variables get automagically included at the top
979979
# of all automake generated make files. This is why you don't see them

tests/test_strncat_s.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*------------------------------------------------------------------
22
* test_strncat_s
33
* File 'str/strncat_s.c'
4-
* Lines executed:92.22% of 90
4+
* Lines executed:93.33% of 90
55
*
66
*------------------------------------------------------------------
77
*/

tests/test_strncpy_s.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*------------------------------------------------------------------
22
* test_strncpy_s
33
* File 'str/strncpy_s.c'
4-
* Lines executed:94.44% of 72
4+
* Lines executed:95.83% of 72
55
*
66
*------------------------------------------------------------------
77
*/

tests/test_vswprintf_s.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*------------------------------------------------------------------
22
* test_vswprintf_s
33
* File 'wchar/vswprintf_s.c'
4-
* Lines executed:82.98% of 47
4+
* Lines executed:79.59% of 49
55
*
66
*------------------------------------------------------------------
77
*/

0 commit comments

Comments
 (0)