Changeset 9ff0c25


Ignore:
Timestamp:
2011-12-19T20:46:01Z (12 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
6c0fe9b
Parents:
5a48afd
Message:

Catch condition=G_IO_NVAL from glib's event handler, which should prevent
some crashes on unclean shutdowns of connections.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lib/events_glib.c

    r5a48afd r9ff0c25  
    7575        b_input_condition gaim_cond = 0;
    7676        gboolean st;
     77       
     78        if (condition & G_IO_NVAL)
     79                return FALSE;
    7780
    7881        if (condition & GAIM_READ_COND)
Note: See TracChangeset for help on using the changeset viewer.