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
In the file cyber/transport/shm/protobuf_arena_manager.cc, a delete void* operation is performed. However, as void* is a pointer to a template class ArenaQueue and not a primitive value type, the destructor ~ArenaQueue() will not be invoked upon deletion of the map value.
In the file
cyber/transport/shm/protobuf_arena_manager.cc
, adelete void*
operation is performed. However, asvoid*
is a pointer to a template classArenaQueue
and not a primitive value type, the destructor~ArenaQueue()
will not be invoked upon deletion of the map value.The code
The text was updated successfully, but these errors were encountered: