Browse Source

- Fix ZTS Build

migration/RELEASE_1_0_0
Marcus Boerger 21 years ago
parent
commit
ebcafe58d3
  1. 4
      Zend/zend_API.c

4
Zend/zend_API.c

@ -3413,7 +3413,11 @@ ZEND_API zend_uchar zend_get_unified_string_type(int num_args TSRMLS_DC, ...)
if (num_args <= 0) return (zend_uchar)-1;
#ifdef ZTS
va_start(ap, TSRMLS_C);
#else
va_start(ap, num_args);
#endif
while (num_args--) {
type = va_arg(ap, int);
if (type == IS_BINARY) {

Loading…
Cancel
Save