[openssl-dev] [openssl.org #3829] Bug Report

2015-05-07 Thread Rich Salz via RT
Fixed on both master and 1.0.2 the other commit: - Log - commit 8dfe1e4dd27c21a0ccebbb97d9b6a3612e8d54ef Author: Viktor Dukhovni Date: Thu May 7 13:43:36 2015 -0400 Fix typo in valid_star Reviewed-by: Rich Salz __

[openssl-dev] [openssl.org #3829] Bug Report

2015-05-07 Thread Rich Salz via RT
- Log - commit 8dfe1e4dd27c21a0ccebbb97d9b6a3612e8d54ef Author: Viktor Dukhovni Date: Thu May 7 13:43:36 2015 -0400 Fix typo in valid_star Reviewed-by: Rich Salz ___ openssl-dev mailing

[openssl-dev] [openssl.org #3829] Bug Report

2015-05-01 Thread Chris Cooksey via RT
OpenSSL 1.0.2 a has a bug in crypto/x509v3/v3_util.c line 810: int atend = (i == len - 1 || p[i + i] == '.'); It is supposed to read: int atend = (i == len - 1 || p[i + 1] == '.'); Note the the expression p[i + i] is patently wrong. Thanks, Chris Cooksey This em