Browse Source

Plug leak of 1/2 bytes when converting from string/unicode

migration/RELEASE_1_0_0
Sara Golemon 21 years ago
parent
commit
87bcf776f7
  1. 1
      Zend/zend_execute.c

1
Zend/zend_execute.c

@ -1156,6 +1156,7 @@ static void zend_fetch_dimension_address(temp_variable *result, zval **container
SEPARATE_ZVAL(container_ptr);
container = *container_ptr;
}
zval_dtor(container);
array_init(container);
break;
}

Loading…
Cancel
Save