commit 9e6681576e294abc628335cb0d8d0b7800c7fd13 from: Neels Hofmeyr date: Mon Jan 27 21:48:59 2020 UTC myers: permit ~4Mb of state commit - 81b40973581de1f3c508c35229ff720b91e13143 commit + 9e6681576e294abc628335cb0d8d0b7800c7fd13 blob - 6a2fd6aeacd8b4d93e4cf4b9b9d310fe8dd20f88 blob + 86b3c54681283baa034bfbeeb19d4b2ee19ef50a --- diff/diff.c +++ diff/diff.c @@ -75,7 +75,7 @@ const struct diff_algo_config myers, patience, myers_d const struct diff_algo_config myers = (struct diff_algo_config){ .impl = diff_algo_myers, - .permitted_state_size = 104 * sizeof(int), + .permitted_state_size = 1024 * 1024 * sizeof(int), .fallback_algo = &patience, };