Skip to content

Commit 762ac9a

Browse files
committed
Constify php_uri_property_write_helper
1 parent 6b93f5f commit 762ac9a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ext/uri/php_uri_common.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ void php_uri_property_read_helper(INTERNAL_FUNCTION_PARAMETERS, php_uri_property
5555
}
5656
}
5757

58-
static void php_uri_property_write_helper(INTERNAL_FUNCTION_PARAMETERS, php_uri_property_name property_name, zval *property_zv)
58+
static void php_uri_property_write_helper(INTERNAL_FUNCTION_PARAMETERS, php_uri_property_name property_name, const zval *property_zv)
5959
{
6060
php_uri_object *old_uri_object = Z_URI_OBJECT_P(ZEND_THIS);
6161
ZEND_ASSERT(old_uri_object->uri != NULL);

0 commit comments

Comments
 (0)