diff options
author | Anthony Neal <aneal@zeroc.com> | 2002-01-21 14:24:28 +0000 |
---|---|---|
committer | Anthony Neal <aneal@zeroc.com> | 2002-01-21 14:24:28 +0000 |
commit | b315a069952c4f8e28335ba28b7ad276611df3da (patch) | |
tree | 525a1146ca9ed08b5766371c071db40195bc6d8f /cpp/src/Ice/SslSystemOpenSSL.cpp | |
parent | fix (diff) | |
download | ice-b315a069952c4f8e28335ba28b7ad276611df3da.tar.bz2 ice-b315a069952c4f8e28335ba28b7ad276611df3da.tar.xz ice-b315a069952c4f8e28335ba28b7ad276611df3da.zip |
Fixed a uninitialized memory read in SslSystemOpenSSL.cpp, _randSeeded.
Diffstat (limited to 'cpp/src/Ice/SslSystemOpenSSL.cpp')
-rw-r--r-- | cpp/src/Ice/SslSystemOpenSSL.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/Ice/SslSystemOpenSSL.cpp b/cpp/src/Ice/SslSystemOpenSSL.cpp index 94c8875c68e..bafa56b4ff8 100644 --- a/cpp/src/Ice/SslSystemOpenSSL.cpp +++ b/cpp/src/Ice/SslSystemOpenSSL.cpp @@ -837,7 +837,8 @@ IceSecurity::Ssl::OpenSSL::System::System(string& systemID) : _configLoaded = false; _sessionContext = "iceServer"; - +
+ _randSeeded = 0; _sslServerContext = 0; _sslClientContext = 0; |