FS-5395: False alarm on a reported valgrind memory leak. The io_private is alloc'd from a memory pool which valgrind sucks at tracking. No need to free this, because it'll get cleared when the memory pool on the rsession is destroyed.

This commit is contained in:
William King 2013-05-08 18:45:24 -07:00
parent b3117e8f88
commit 9fa4bed8e3
1 changed files with 0 additions and 5 deletions

View File

@ -183,11 +183,6 @@ static switch_status_t rtmp_tcp_close(rtmp_session_t *rsession)
switch_buffer_destroy(&(io_pvt->sendq));
}
if ( rsession->io_private ) {
free(rsession->io_private);
rsession->io_private = NULL;
}
return SWITCH_STATUS_SUCCESS;
}