diff options
| author | Antony Dovgal <tony2001@php.net> | 2006-08-08 16:58:06 +0000 |
|---|---|---|
| committer | Antony Dovgal <tony2001@php.net> | 2006-08-08 16:58:06 +0000 |
| commit | f5715ee86f241510cf51c9ed17aa456eb19d1ac2 (patch) | |
| tree | a2fa164c7e36976b00fc208b48fc068f22c4aacb /Zend/zend.c | |
| parent | e9aaf0b16b85ec350fe97acb8afeaa06328c7365 (diff) | |
| download | php-git-f5715ee86f241510cf51c9ed17aa456eb19d1ac2.tar.gz | |
implement zend_unicode_to_string() and zend_string_to_unicode()
part #1 (of 2)
Diffstat (limited to 'Zend/zend.c')
| -rw-r--r-- | Zend/zend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend.c b/Zend/zend.c index 08c84c7329..1ff693184c 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -611,7 +611,7 @@ static int zend_path_encode_wrapper(char **encpath, int *encpath_len, const UCha { UErrorCode status = U_ZERO_ERROR; - zend_convert_from_unicode(ZEND_U_CONVERTER(UG(filesystem_encoding_conv)), encpath, encpath_len, path, path_len, &status); + zend_unicode_to_string_ex(ZEND_U_CONVERTER(UG(filesystem_encoding_conv)), encpath, encpath_len, path, path_len, &status); if (U_FAILURE(status)) { efree(*encpath); |
