git-svn: trunk@988
remotes/push_mirror/metadata
Tomasz Kojm 21 years ago
parent 8d5e0ac00c
commit 5edae84a06
  1. 10
      clamav-devel/NEWS
  2. 10
      clamav-devel/README
  3. 13
      clamav-devel/libclamav/others.c

@ -2,6 +2,16 @@ Note: This README/NEWS file refers to the source tarball. Some things described
here may not be available in binary packages.
--
0.80rc4
-------
Improvements in this release include better JPEG exploit verification,
faster base64 decoding, support for GNU tar files, updated on-access scanner,
and others.
--
The ClamAV team (http://www.clamav.net/team.html)
0.80rc3
-------

@ -2,6 +2,16 @@ Note: This README/NEWS file refers to the source tarball. Some things described
here may not be available in binary packages.
--
0.80rc4
-------
Improvements in this release include better JPEG exploit verification,
faster base64 decoding, support for GNU tar files, updated on-access scanner,
and others.
--
The ClamAV team (http://www.clamav.net/team.html)
0.80rc3
-------

@ -249,8 +249,8 @@ void *cli_malloc(size_t size)
void *alloc;
if(size > MAX_ALLOCATION) {
cli_errmsg("Attempt to allocate more than %d bytes. Please report to bugs@clamav.net\n", MAX_ALLOCATION);
if(size > MAX_ALLOCATION || size < 0) {
cli_errmsg("Attempt to allocate %d bytes. Please report to bugs@clamav.net\n", size);
return NULL;
}
@ -268,8 +268,9 @@ void *cli_calloc(size_t nmemb, size_t size)
{
void *alloc;
if(size > MAX_ALLOCATION) {
cli_errmsg("Attempt to allocate more than %d bytes. Please report to bugs@clamav.net\n", MAX_ALLOCATION);
if(size > MAX_ALLOCATION || size < 0) {
cli_errmsg("Attempt to allocate %d bytes. Please report to bugs@clamav.net\n", size);
return NULL;
}
@ -287,10 +288,6 @@ void *cli_realloc(void *ptr, size_t size)
{
void *alloc;
if(size > MAX_ALLOCATION) {
cli_errmsg("Attempt to allocate more than %d bytes. Please report to bugs@clamav.net\n", MAX_ALLOCATION);
return NULL;
}
alloc = realloc(ptr, size);

Loading…
Cancel
Save