diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2014-05-02 17:44:51 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2014-05-02 17:44:51 +0000 |
commit | c7edfe0f5f34fca20bfc13fbcd5c64d4d4951108 (patch) | |
tree | 1a80d0a084d860f9f9f0c6b7b385a7f581b58e2a /src/htstools.c | |
parent | 381eebc05697ce57b4c2941a879bcdde792e1a06 (diff) |
Fixes.
Diffstat (limited to 'src/htstools.c')
-rw-r--r-- | src/htstools.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htstools.c b/src/htstools.c index c176d26..78fb827 100644 --- a/src/htstools.c +++ b/src/htstools.c @@ -1110,7 +1110,7 @@ HTSEXT_API int hts_findnext(find_handle find) { if ((find->dirp = readdir(find->hdir))) if (find->dirp->d_name) if (!STAT - (concat(catbuff, find->path, find->dirp->d_name), &find->filestat)) + (concat(catbuff, sizeof(catbuff), find->path, find->dirp->d_name), &find->filestat)) return 1; #endif } |