Skip to content
Snippets Groups Projects
Commit ef2dd4bc authored by Mark Adamson's avatar Mark Adamson
Browse files

ITS#897 Internal connection that is closed on one end and about to

be closed on other end could get reused by a new internal connection.
parent 466ff113
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,8 @@ int lutil_pair( ber_socket_t sds[2] )
return rc;
}
sds[0] = sds[1] = sd;
sds[0] = sd;
sds[1] = dup( sds[0] );
return 0;
#endif
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment