diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2014-05-08 09:17:27 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2014-05-08 09:17:27 +0000 |
commit | 9208228e2dc665e525824c9fd49865cc8c7f0434 (patch) | |
tree | 98885e3963041e76c0f6ab0bf3c6996cfb90004c /src | |
parent | 9a17499b99955b4e18366ef4fac9acffee2c2ede (diff) |
Missing NULL.
Diffstat (limited to 'src')
-rw-r--r-- | src/htsinthash.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/htsinthash.c b/src/htsinthash.c index 4b125c3..6e3eee7 100644 --- a/src/htsinthash.c +++ b/src/htsinthash.c @@ -1188,6 +1188,8 @@ inthash inthash_new(size_t initial_size) { hashtable->custom.key.hash = NULL; hashtable->custom.key.equals = NULL; hashtable->custom.key.arg = NULL; + hashtable->custom.error.fatal = NULL; + hashtable->custom.error.arg = NULL; } return hashtable; } |