You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to MessageConnectionTreeItem having a shared ptr to MessageConnection, a connection is never freed even after it closes, when the NetworkDialog is open. In a network client usage, this means leaking connections when performing repeated connection and disconnection.
The text was updated successfully, but these errors were encountered:
By leaking, do you mean actually leaking allocated raw memory pointers? Or leaking network memory sockets after MessageConnections are deleted? Do the MessageConnections properly clean up when all dialogs are closed, i.e. is it just a temporary held-alive reference by the NetworkDialog code, or are you actually seeing that connections stay unclosed indefinitely even after the user closes the dialog?
Due to MessageConnectionTreeItem having a shared ptr to MessageConnection, a connection is never freed even after it closes, when the NetworkDialog is open. In a network client usage, this means leaking connections when performing repeated connection and disconnection.
The text was updated successfully, but these errors were encountered: