| ... | ... |
@@ -1,3 +1,8 @@ |
| 1 |
+Tue Mar 10 16:14:30 EET 2009 (edwin) |
|
| 2 |
+------------------------------------ |
|
| 3 |
+ * libclamav/mpool.c, shared/output.c: fix uninitialized value |
|
| 4 |
+ warning. |
|
| 5 |
+ |
|
| 1 | 6 |
Tue Mar 10 11:51:15 CET 2009 (tk) |
| 2 | 7 |
--------------------------------- |
| 3 | 8 |
* sigtool/sigtool.c: add missing entry for safebrowsing.info |
| ... | ... |
@@ -588,7 +588,7 @@ unsigned char *cli_mpool_hex2str(mpool_t *mp, const unsigned char *hex) {
|
| 588 | 588 |
size_t len = strlen((const char*)hex); |
| 589 | 589 |
|
| 590 | 590 |
if (len&1) {
|
| 591 |
- cli_errmsg("cli_hex2str(): Malformed hexstring: %s (length: %u)\n", str, (unsigned)len);
|
|
| 591 |
+ cli_errmsg("cli_hex2str(): Malformed hexstring: %s (length: %u)\n", hex, (unsigned)len);
|
|
| 592 | 592 |
return NULL; |
| 593 | 593 |
} |
| 594 | 594 |
|