Changeset 92a9c68
- Timestamp:
- 2010-04-08T21:56:27Z (15 years ago)
- Branches:
- master
- Children:
- 7a90d02
- Parents:
- 5b9b2b6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
irc.c
r5b9b2b6 r92a9c68 63 63 return NULL; 64 64 } 65 66 /* Do a test iconv to see if the user picked an IRC-compatible 67 charset (for example utf-16 goes *horribly* wrong). */ 65 68 if( ( test = g_convert_with_iconv( " ", 1, oc, NULL, &test_bytes, NULL ) ) == NULL || 66 69 test_bytes > 1 ) … … 72 75 return NULL; 73 76 } 77 g_free( test ); 78 74 79 if( ( ic = g_iconv_open( "utf-8", value ) ) == (GIConv) -1 ) 75 80 {
Note: See TracChangeset
for help on using the changeset viewer.