Changeset 5e202b0 for protocols/msn
- Timestamp:
- 2006-09-23T16:18:24Z (18 years ago)
- Branches:
- master
- Children:
- 172a73f1
- Parents:
- d8e0484
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/msn.c
rd8e0484 r5e202b0 183 183 static GList *msn_away_states( struct gaim_connection *gc ) 184 184 { 185 GList *l = NULL;185 static GList *l = NULL; 186 186 int i; 187 187 188 for( i = 0; msn_away_state_list[i].number > -1; i ++ ) 189 l = g_list_append( l, (void*) msn_away_state_list[i].name ); 190 191 return( l ); 188 if( l == NULL ) 189 for( i = 0; msn_away_state_list[i].number > -1; i ++ ) 190 l = g_list_append( l, (void*) msn_away_state_list[i].name ); 191 192 return l; 192 193 } 193 194
Note: See TracChangeset
for help on using the changeset viewer.