Skip to content

Commit

Permalink
integer overflow on indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
lh3 committed Jan 27, 2016
1 parent c819643 commit fdf4700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bwtindex.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ bwt_t *bwt_pac2bwt(const char *fn_pac, int use_is)
{
bwt_t *bwt;
ubyte_t *buf, *buf2;
int i, pac_size;
int64_t i, pac_size;
FILE *fp;

// initialization
Expand Down

0 comments on commit fdf4700

Please sign in to comment.