Changeset e05f7924382813b868e8f7af9e71e84d8de90c19
- Timestamp:
- 03/14/07 20:01:04
(1 year ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1173898864 +0000
- git-parent:
[d7892111cd0b472b98175ee7db350edd5b5cafc8]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1173898864 +0000
- Message:
Fix for obsolete setups
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r92871bd |
re05f792 |
|
| 92 | 92 | static pthread_once_t once = PTHREAD_ONCE_INIT; |
|---|
| 93 | 93 | pthread_once (&once, find_charset_once); |
|---|
| 94 | | return strcmp (charset, "UTF-8"); |
|---|
| | 94 | return !strcmp (charset, "UTF-8"); |
|---|
| 95 | 95 | } |
|---|
| 96 | 96 | #endif |
|---|
| … | … | |
| 174 | 174 | { |
|---|
| 175 | 175 | #if defined (USE_ICONV) |
|---|
| 176 | | if (strcmp (charset, "UTF-8")) |
|---|
| | 176 | if (find_charset ()) |
|---|
| 177 | 177 | free ((char *)str); |
|---|
| 178 | 178 | #elif defined (USE_MB2MB) |
|---|