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
Currently, the private function pnet_init_only() is called in the unit tests. This does not allocate the pnet_t struct, but it does allocate memory for mutexes. The allocated memory is never released.
Fix this by creating a destructor function and call it from the tests' TearDown() function.
The text was updated successfully, but these errors were encountered:
Currently, the private function pnet_init_only() is called in the unit tests. This does not allocate the pnet_t struct, but it does allocate memory for mutexes. The allocated memory is never released.
Fix this by creating a destructor function and call it from the tests' TearDown() function.
The text was updated successfully, but these errors were encountered: