hash_t *hash = xmalloc_and_zero(sizeof *hash);
hash->n = n;
hash->size = size;
- hash->keys = xmalloc(hash->n * hash->size);
+ hash->keys = xmalloc_and_zero(hash->n * hash->size);
hash->values = xmalloc_and_zero(hash->n * sizeof *hash->values);
return hash;
}
void hash_resize(hash_t *hash, size_t n) {
hash->keys = xrealloc(hash->keys, n * hash->size);
hash->values = xrealloc(hash->values, n * sizeof *hash->values);
- if(n > hash->n)
+ if(n > hash->n) {
+ memset(hash->keys + hash->n * hash->size, 0, (n - hash->n) * hash->size);
memset(hash->values + hash->n, 0, (n - hash->n) * sizeof *hash->values);
+ }
}
sockaddr_t str2sockaddr(const char *address, const char *port) {
struct addrinfo *ai, hint = {0};
- sockaddr_t result;
+ sockaddr_t result = {{0}};
int err;
hint.ai_family = AF_UNSPEC;