Fixed a bug with "TypeError can't convert nil into String"

git-svn-id: file:///home/svn/framework3/trunk@12453 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Wei Chen 2011-04-27 15:41:37 +00:00
parent 95e9153b33
commit 2f6b941584
1 changed files with 1 additions and 0 deletions

View File

@ -88,6 +88,7 @@ class Metasploit3 < Msf::Post
@chrome_files.each do |item| @chrome_files.each do |item|
break if item[:sql] == nil break if item[:sql] == nil
break if item[:raw_file] == nil
db = SQLite3::Database.new(item[:raw_file]) db = SQLite3::Database.new(item[:raw_file])
begin begin