mattv (Matt Venables)
- Login: mattv
- Email: mattvenables@gmail.com
- Registered on: 03/13/2012
- Last sign in: 11/13/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
03/13/2012
-
10:34 PM Ruby Bug #6134: Ruby crashes when calling OpenSSL::PKCS7.new with invalid PKCS7 data
- I don't believe OpenSSL has been upgraded, but, running "openssl version" gives me:
OpenSSL 0.9.8r 8 Feb 2011
I reinstalled 1.9.2-p318 (and 1.9.2-p180) and everything worked as expected (same as before - no segfault). I then reinstalle... -
01:44 AM Ruby Bug #6134 (Closed): Ruby crashes when calling OpenSSL::PKCS7.new with invalid PKCS7 data
- Reproducing steps:
Run the following script in 1.9.3-p125 (it is attached to the issue as well)
require 'openssl'
contents = File.read(__FILE__)
begin
OpenSSL::PKCS7.new(contents)
puts "OK"
rescue => e
puts "Error!"
p...