Skip to content

Commit

Permalink
Fix bug #449
Browse files Browse the repository at this point in the history
Closes 449
  • Loading branch information
renecannao committed Dec 22, 2015
1 parent 50844fb commit f85ca85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mysql_data_stream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ MySQL_Data_Stream::~MySQL_Data_Stream() {
if (myds_type==MYDS_BACKEND || myds_type==MYDS_BACKEND_NOT_CONNECTED) {
assert(myconn==NULL);
}
// if ( (myconn) && (myds_type==MYDS_FRONTEND) ) { delete myconn; myconn=NULL; }
if ( (myconn) && (myds_type==MYDS_FRONTEND) ) { delete myconn; myconn=NULL; }
if (encrypted) {
if (ssl) SSL_free(ssl);
// if (ssl_ctx) SSL_CTX_free(ssl_ctx);
Expand Down

0 comments on commit f85ca85

Please sign in to comment.