andrei Fri Aug 12 13:29:22 2005 EDT
Modified files:
/ZendEngine2 zend_alloc.h
Log:
http://cvs.php.net/diff.php/ZendEngine2/zend_alloc.h?r1=1.65&r2=1.66&ty=u
Index: ZendEngine2/zend_alloc.h
diff -u ZendEngine2/zend_alloc.h:1.65 ZendEngine2/zend_alloc.h:1.66
--- ZendEngine2/zend_alloc.h:1.65 Fri Aug 12 13:14:21 2005
+++ ZendEngine2/zend_alloc.h Fri Aug 12 13:29:21 2005
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: zend_alloc.h,v 1.65 2005/08/12 17:14:21 andrei Exp $ */
+/* $Id: zend_alloc.h,v 1.66 2005/08/12 17:29:21 andrei Exp $ */
#ifndef ZEND_ALLOC_H
#define ZEND_ALLOC_H
@@ -154,7 +154,7 @@
#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)
--
Zend Engine CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|