summaryrefslogtreecommitdiff
path: root/src/htscoremain.c
diff options
context:
space:
mode:
authorXavier Roche <xroche@users.noreply.github.com>2013-06-26 20:06:50 +0000
committerXavier Roche <xroche@users.noreply.github.com>2013-06-26 20:06:50 +0000
commita835ee13e3f5a095467e645bd1ddea5ee208599e (patch)
treed7412dd6f882ee6b55f97a3b74c6d56705ca7ccc /src/htscoremain.c
parentb5e663cd80904d70ad2f0d6202a0c3ce6e582b58 (diff)
Fixed old 3-hashtable missing free on exit
Always use default starting hash size
Diffstat (limited to 'src/htscoremain.c')
-rw-r--r--src/htscoremain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htscoremain.c b/src/htscoremain.c
index 4a1bdcd..c5ebe77 100644
--- a/src/htscoremain.c
+++ b/src/htscoremain.c
@@ -1931,7 +1931,7 @@ HTSEXT_API int hts_main2(int argc, char **argv, httrackp * opt) {
int found = 0;
char *filter = NULL;
cache_back cache;
- inthash cache_hashtable = inthash_new(HTS_HASH_SIZE);
+ inthash cache_hashtable = inthash_new(0);
int backupXFR = htsMemoryFastXfr;
int sendb = 0;