regex.c
# define MAX_BUF_SIZE (1L << 16)
should be at least
# define MAX_BUF_SIZE (1L << 18)
64 kb is really too small
Log in to post a comment.