Browse Source

Fix intl build

pull/450/head
Nikita Popov 13 years ago
parent
commit
8748e146b9
  1. 2
      Zend/zend_string.h

2
Zend/zend_string.h

@ -74,7 +74,7 @@ END_EXTERN_C()
: erealloc(str, new_len))
static inline char *_str_erealloc(char *str, size_t new_len, size_t old_len) {
char *buf = emalloc(new_len);
char *buf = (char *) emalloc(new_len);
memcpy(buf, str, old_len);
return buf;
}

Loading…
Cancel
Save