Skip to content

Commit

Permalink
[FIX] libdivsufsort. Infinite recursion in divsufsort64()
Browse files Browse the repository at this point in the history
  • Loading branch information
cpockrandt committed Mar 13, 2019
1 parent 1d88511 commit f26ecc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/sdsl/divsufsort.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1688,7 +1688,7 @@ divsufsort(const uint8_t *T, saidx_t *SA, saidx_t n) {
// }

inline int32_t divsufsort64(const uint8_t *T, int64_t *SA, int64_t n) {
return divsufsort64(T, SA, n);
return divsufsort(T, SA, n);
}

template <typename saidx_t>
Expand Down

0 comments on commit f26ecc4

Please sign in to comment.