Differences From Artifact [aa058371f0]:
- File cackey.c — part of check-in [846e77f0f5] at 2015-07-24 04:07:21 on branch trunk — Added more fixes for memory leaks or use of uninitialized memory (user: rkeene, size: 217840) [annotate] [blame] [check-ins using]
To Artifact [a17e1982da]:
- File cackey.c — part of check-in [8299a1c4f7] at 2015-07-24 04:11:09 on branch trunk — Further failure to free on error repaired and start of AFL testing code added. (user: rkeene, size: 217857) [annotate] [blame] [check-ins using]
| ︙ | |||
2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 | 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 | + + |
*count = outidx;
if (certs_resizable) {
if (*count != 0) {
certs = realloc(certs, sizeof(*certs) * (*count));
} else {
free(certs);
certs = NULL;
}
}
slot->cached_certs = cackey_copy_certs(NULL, certs, *count);
slot->cached_certs_count = *count;
|
| ︙ |