mirror of
https://github.com/curl/curl.git
synced 2024-11-21 01:16:58 +08:00
7.10.7
This commit is contained in:
parent
6fc55467f4
commit
5c2df3e1a4
15
CHANGES
15
CHANGES
@ -6,6 +6,21 @@
|
||||
|
||||
Changelog
|
||||
|
||||
Version 7.10.7 (15 August 2003)
|
||||
|
||||
Daniel (14 August)
|
||||
- I modified the memdebug system to return failure on memory allocation
|
||||
functions after a set amount of successful ones. This enables us to test
|
||||
out-of-memory situations in a controlled manner and we can make sure that
|
||||
curl/libcurl behaves good in those.
|
||||
|
||||
This made me find and fix several spots where we did not cleanup properly
|
||||
when bailing out due to errors (low memory).
|
||||
|
||||
- Corrected test case 74. Made using -o with bad #[num] codes complain and
|
||||
bail out. Made #[num] support numbers larger than 9 as well. Added test
|
||||
case 86 for a proper range globbing test as well.
|
||||
|
||||
Version 7.10.7-pre4 (12 August 2003)
|
||||
|
||||
Daniel (12 August)
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
/* This is the version number of the libcurl package from which this header
|
||||
file origins: */
|
||||
#define LIBCURL_VERSION "7.10.7-pre4"
|
||||
#define LIBCURL_VERSION "7.10.7"
|
||||
|
||||
/* This is the numeric version of the libcurl version number, meant for easier
|
||||
parsing and comparions by programs. The LIBCURL_VERSION_NUM define will
|
||||
|
@ -1,3 +1,3 @@
|
||||
#define CURL_NAME "curl"
|
||||
#define CURL_VERSION "7.10.7-pre4"
|
||||
#define CURL_VERSION "7.10.7"
|
||||
#define CURL_ID CURL_NAME " " CURL_VERSION " (" OS ") "
|
||||
|
Loading…
Reference in New Issue
Block a user