stephenfewer / grinder

Grinder is a system to automate the fuzzing of web browsers and the management of a large number of crashes.
BSD 3-Clause "New" or "Revised" License
414 stars 131 forks source link

The first letter for jscript9/jscript.dll could be upcase #1

Closed darkmage closed 11 years ago

darkmage commented 11 years ago

so the better handle in internetexplorer.rb will be:

-if( path.include?( 'jscript9' ) ) +if( path.downcase.include?( 'jscript9' ) )

-elsif( path.include?( 'jscript' ) ) +elsif( path.downcase.include?( 'jscript' ) )

Thanks.

stephenfewer commented 11 years ago

Thanks darkmage, have commited a fix for this, cheers.