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
IRC threads are using pointers in an unsafe way (specially the irc session pointer)
This meaning, an IRC thread might try to write to an invalid IRC session if it was invalidated (e.g. disconnection) in another thread, and it didn't reconnect in time.
A possible solution might be to lock the IRC session on those "critical" sections
The text was updated successfully, but these errors were encountered:
IRC threads are using pointers in an unsafe way (specially the irc session pointer)
This meaning, an IRC thread might try to write to an invalid IRC session if it was invalidated (e.g. disconnection) in another thread, and it didn't reconnect in time.
A possible solution might be to lock the IRC session on those "critical" sections
The text was updated successfully, but these errors were encountered: