1
0
mirror of https://github.com/php/php-src.git synced 2026-04-12 02:23:18 +02:00

- pass the adress not the value

This commit is contained in:
Johannes Schlüter
2007-10-01 20:36:01 +00:00
parent c3cf6cb069
commit 32966bb37d

View File

@@ -6125,7 +6125,7 @@ PHP_FUNCTION(move_uploaded_file)
RETURN_FALSE;
}
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &path, &path_len, &new_path, new_path_len) == FAILURE) {
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss", &path, &path_len, &new_path, &new_path_len) == FAILURE) {
return;
}