Skip to content

Commit

Permalink
Bump to v25082017 2.1
Browse files Browse the repository at this point in the history
Some errors have been changed.
  • Loading branch information
rurban committed Aug 25, 2017
1 parent b93a09f commit 82392e9
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@

ChangeLog file for safeclib

Changes in v25082017 2.1.0
- Fixed many tests. They were not enabled at all. See #10.
sprintf_s, snprintf_s, memcpy16_s, memcpy32_s,
memmove_s, memmove16_s, memmove32_s, memset_s,
strcpyfldout_s, strljustify_s,
- Changed some errors: Throw ESLEMAX when smax exceeds max,
before the smax>dmax check (ESNOSPC):
memcpy_s, memcpy16_s, memcpy32_s, memcmp_s, memcmp16_s,
memcmp32_s, memmove_s, memmove16_s, memmov32_s.
- Reverted a strljustify_s change by me.
- Document that memset_s on C11 allows n = ZERO, and
ESNULLP will be EINVAL
- --enable-debug on Darwin disables shared
- add snprintf_s, which is the unsafe variant of sprintf_s

Changes in v24082017 2.0.1
- Added man (3) pages and proper documentation.
See https://rurban.github.io/safeclib/
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -355,8 +355,8 @@ AC_SUBST([TARBALL_VERSION_FILE])
# version information, refer to the libtool manual, section "Updating
# library version information":
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
AC_SUBST([SAFEC_SO_VERSION], [2:0:1])
AC_SUBST([SAFEC_API_VERSION], [2.0])
AC_SUBST([SAFEC_SO_VERSION], [2:1:0])
AC_SUBST([SAFEC_API_VERSION], [2.1])

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

0 comments on commit 82392e9

Please sign in to comment.