Skip to content

Commit

Permalink
- pass the adress not the value
Browse files Browse the repository at this point in the history
  • Loading branch information
johannes committed Oct 1, 2007
1 parent c3cf6cb commit 32966bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/standard/basic_functions.c
Expand Up @@ -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;
}

Expand Down

0 comments on commit 32966bb

Please sign in to comment.