mirror of
https://github.com/openssl/openssl.git
synced 2024-11-29 04:55:11 +08:00
Prevent infinite loop loading config files.
PR#2985
This commit is contained in:
parent
b73ac02735
commit
9d23f422a3
@ -321,7 +321,7 @@ again:
|
||||
p=eat_ws(conf, end);
|
||||
if (*p != ']')
|
||||
{
|
||||
if (*p != '\0')
|
||||
if (*p != '\0' && ss != p)
|
||||
{
|
||||
ss=p;
|
||||
goto again;
|
||||
|
Loading…
Reference in New Issue
Block a user