summaryrefslogtreecommitdiff
path: root/git-instaweb.sh
diff options
context:
space:
mode:
authorPaolo Bonzini <bonzini@gnu.org>2009-06-17 14:26:06 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-06-18 16:52:10 (GMT)
commit959e2e64a594e2fb8de2585078e31b07a8da6fc9 (patch)
treebd57636123d4d79e88965e88f4eafebaa5434bee /git-instaweb.sh
parent9b7dc7183528d42c46786a0be1acc58d4cd1f47a (diff)
downloadgit-959e2e64a594e2fb8de2585078e31b07a8da6fc9.zip
git-959e2e64a594e2fb8de2585078e31b07a8da6fc9.tar.gz
git-959e2e64a594e2fb8de2585078e31b07a8da6fc9.tar.bz2
avoid exponential regex match for java and objc function names
In the old regex ^[ \t]*(([ \t]*[A-Za-z_][A-Za-z_0-9]*){2,}[ \t]*\([^;]*)$ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ you can backtrack arbitrarily from [A-Za-z_0-9]* into [A-Za-z_], thus causing an exponential number of backtracks. Ironically it also causes the regex not to work as intended; for example "catch" can match the underlined part of the regex, the first repetition matching "c" and the second matching "atch". The replacement regex avoids this problem, because it makes sure that at least a space/tab is eaten on each repetition. In other words, a suffix of a repetition can never be a prefix of the next repetition. Signed-off-by: Paolo Bonzini <bonzini@gnu.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-instaweb.sh')
0 files changed, 0 insertions, 0 deletions