mirror of
https://git.libssh.org/projects/libssh.git
synced 2026-02-11 18:50:28 +09:00
poll: Reformat ssh_event_free()
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
(cherry picked from commit 8243030c55)
This commit is contained in:
@@ -1013,12 +1013,15 @@ int ssh_event_remove_connector(ssh_event event, ssh_connector connector){
|
||||
* fds before freeing the event object.
|
||||
*
|
||||
*/
|
||||
void ssh_event_free(ssh_event event) {
|
||||
void ssh_event_free(ssh_event event)
|
||||
{
|
||||
int used, i;
|
||||
ssh_poll_handle p;
|
||||
|
||||
if(event == NULL) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (event->ctx != NULL) {
|
||||
used = event->ctx->polls_used;
|
||||
for(i = 0; i < used; i++) {
|
||||
|
||||
Reference in New Issue
Block a user