Changeset 6017


Ignore:
Timestamp:
May 30, 2019 3:32:28 AM (5 years ago)
Author:
ming
Message:

Re #2206: Fixed incorrect variable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/transport_srtp_dtls.c

    r6016 r6017  
    468468         * SSL handshake, while previous versions always return 0.        
    469469         */ 
    470         if (SSL_in_init(ossock->ossl_ssl) == 0) { 
    471             SSL_shutdown(ossock->ossl_ssl); 
     470        if (SSL_in_init(ds->ossl_ssl) == 0) { 
     471            SSL_shutdown(ds->ossl_ssl); 
    472472        } 
    473473        SSL_free(ds->ossl_ssl); /* this will also close BIOs */ 
Note: See TracChangeset for help on using the changeset viewer.