libclamav/mpool.c: fix old free() call in cli_mp_hex2ui()

git-svn: trunk@4592
0.95
Tomasz Kojm 17 years ago
parent 76115c1963
commit 27e28c610e
  1. 4
      ChangeLog
  2. 2
      libclamav/mpool.c

@ -1,3 +1,7 @@
Mon Jan 5 19:54:13 CET 2009 (tk)
---------------------------------
* libclamav/mpool.c: fix old free() call in cli_mp_hex2ui()
Mon Jan 5 12:56:59 EET 2009 (edwin)
------------------------------------
* libclamav/regex_list.c: fix malformed .pdb handling (bb #1338)

@ -626,7 +626,7 @@ uint16_t *cli_mp_hex2ui(mp_t *mp, const char *hex) {
if(cli_realhex2ui(hex, str, len))
return str;
free(str);
mp_free(mp, str);
return NULL;
}

Loading…
Cancel
Save