Removed unused retry variables #4313

This commit is contained in:
Nick Bolton 2015-03-04 14:07:43 +00:00
parent b4a1c3627f
commit 3364d38498
1 changed files with 0 additions and 2 deletions

View File

@ -100,7 +100,6 @@ SecureSocket::secureAccept()
UInt32
SecureSocket::secureRead(void* buffer, UInt32 n)
{
bool retry = false;
int r = 0;
if (m_ssl->m_ssl != NULL) {
r = SSL_read(m_ssl->m_ssl, buffer, n);
@ -119,7 +118,6 @@ SecureSocket::secureRead(void* buffer, UInt32 n)
UInt32
SecureSocket::secureWrite(const void* buffer, UInt32 n)
{
bool retry = false;
int r = 0;
if (m_ssl->m_ssl != NULL) {
r = SSL_write(m_ssl->m_ssl, buffer, n);