-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
412fb7e
commit 9ba20a5
Showing
5 changed files
with
12 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
## Version 1.0.1 (May 26, 2023) | ||
Fix three possible instances where checking buffer sizes may inadvertently lead to a buffer over-read or app crash (CWE-126). | ||
|
||
## Version 1.0.0 | ||
First release! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
# IPvMe news | ||
|
||
This file details all of the user-facing changes that are in versions 1.6 of | ||
IPvMe. For more details, please consult the CHANGELOG file or | ||
this project's GitHub page. | ||
This file details all of the user-facing changes that are in versions | ||
of IPvMe. For more details, please consult the CHANGELOG file or this | ||
project's GitHub page. | ||
|
||
## CUSTOM COMMENTS | ||
|
||
Custom comments can now be included with the `--comment` option. | ||
Version 1.0.1 is a bugfix release and should function identically to | ||
version 1.0.0. | ||
|
||
----- | ||
For information about older versions, consult the CHANGELOG.md files. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ dnl | |
dnl You should have received a copy of the GNU Affero General Public License | ||
dnl along with this program. If not, see <http://gnu.org/licenses/agpl-3.0.html>. | ||
|
||
AC_INIT([IPvMe], [1.0.0], [[email protected]], [ipvme], [https://github.com/rhymeswithmogul/IPvMe-C]) | ||
AC_INIT([IPvMe], [1.0.1], [[email protected]], [ipvme], [https://github.com/rhymeswithmogul/IPvMe-C]) | ||
AC_REVISION([$Revision: 1 $]) | ||
AM_INIT_AUTOMAKE([foreign subdir-objects -Wall -Werror]) | ||
AC_PREREQ | ||
|
@@ -50,7 +50,7 @@ AC_CHECK_HEADER([string.h], [], AC_MSG_ERROR([string.h is required to build this | |
AC_CHECK_FUNC([strcat], [], AC_MSG_ERROR([strcat() is required to build this package but was not found in string.h.])) | ||
AC_CHECK_FUNC([strcmp], [], AC_MSG_ERROR([strcpy() is required to build this package but was not found in string.h.])) | ||
AC_CHECK_FUNC([strcpy], [], AC_MSG_ERROR([strcpy() is required to build this package but was not found in string.h.])) | ||
AC_CHECK_FUNC([strlen], [], AC_MSG_ERROR([strlen() is required to build this package but was not found in string.h.])) | ||
AC_CHECK_FUNC([strnlen], [], AC_MSG_ERROR([strnlen() is required to build this package but was not found in string.h.])) | ||
AC_CHECK_FUNC([strtok], [], AC_MSG_ERROR([strtok() is required to build this package but was not found in string.h.])) | ||
|
||
dnl Check for close(). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters