diff options
author | Andrei Zmievski <andrei@php.net> | 2005-08-12 17:29:21 +0000 |
---|---|---|
committer | Andrei Zmievski <andrei@php.net> | 2005-08-12 17:29:21 +0000 |
commit | 3abcd651610be48fb252de3b666003c3b7633ffe (patch) | |
tree | ee52821c7f5f1d7cbad1a710c86e97a1cdba8620 | |
parent | 13a179d837646d07d7b5f6ed8827ebbdd26d0aff (diff) | |
download | php-git-3abcd651610be48fb252de3b666003c3b7633ffe.tar.gz |
*** empty log message ***
-rw-r--r-- | Zend/zend_alloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_alloc.h b/Zend/zend_alloc.h index 9ba2803a46..09814d7ee4 100644 --- a/Zend/zend_alloc.h +++ b/Zend/zend_alloc.h @@ -154,7 +154,7 @@ ZEND_API UChar *_eustrndup(const UChar *s, int32_t length ZEND_FILE_LINE_DC ZEND #define eumalloc(size) (UChar*)malloc(UBYTES(size)) #define eurealloc(ptr, size) (UChar*)erealloc((ptr), UBYTES(size)) #define eustrndup(s, length) zend_ustrndup((s), (length)) -#define eustrdup(s) zend_ustrdup((s), u_strlen(s)) +#define eustrdup(s) zend_ustnrdup((s), u_strlen(s)) /* Relay wrapper macros */ #define emalloc_rel(size) malloc(size) |