statsd-client-cpp
statsd-client-cpp copied to clipboard
Use of default copy constructor causes SEGVs
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.