disconnect this callback on error

2001-09-16  Havoc Pennington  <hp@pobox.com>

	* src/session.c (process_ice_messages): disconnect this callback
	on error
This commit is contained in:
Havoc Pennington 2001-09-17 04:11:25 +00:00 committed by Havoc Pennington
parent 7be4c63ee4
commit ecf75915c7
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2001-09-16 Havoc Pennington <hp@pobox.com>
* src/session.c (process_ice_messages): disconnect this callback
on error
2001-09-16 Havoc Pennington <hp@pobox.com> 2001-09-16 Havoc Pennington <hp@pobox.com>
* src/window.c (meta_window_lower): new function * src/window.c (meta_window_lower): new function

View File

@ -77,8 +77,10 @@ process_ice_messages (GIOChannel *channel,
/* We were disconnected */ /* We were disconnected */
IceSetShutdownNegotiation (connection, False); IceSetShutdownNegotiation (connection, False);
IceCloseConnection (connection); IceCloseConnection (connection);
}
return FALSE;
}
return TRUE; return TRUE;
} }