Changesets can be listed by changeset number.
The Git repository is here.
Changeset 422
Under certain conditions the YAML syntax parser could get caught in a
tight loop. This was causing the bug tracker Ruby process to crash if
client browsers visited particular YAML files in the Subversion tree.
- Comitted by: rool
- Date: Monday April 11 13:59:11 2011 (over 13 years ago)
Affected files:
rool/rails/collaboa/trunk/vendor/syntax/lib/syntax/lang/yaml.rb:
prev. | current | |
start_group :string | ||
loop do | ||
line = check_until(/[\n\r]|\Z/) | ||
65 | | |
65 | break if line.nil? || line.length.zero? | |
if line.chomp.length > 0 | ||
this_indent = line.chomp.match( /^\s*/ )[0] | ||
break if this_indent.length < indent.length |