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
Using the default copy constructor leads to the Data pointer being shared between copies of the client. Once a client gets deleted, it deletes the Data which is shared across all clients. Eventually, this leads to a SEGV or malloc error.
The text was updated successfully, but these errors were encountered:
jamesmulcahy
added a commit
to jamesmulcahy/statsd-client-cpp
that referenced
this issue
Sep 18, 2014
Using the default copy constructor leads to the Data pointer being shared between copies of the client. Once a client gets deleted, it deletes the Data which is shared across all clients. Eventually, this leads to a SEGV or malloc error.
The text was updated successfully, but these errors were encountered: