Skip to content

Commit b50dba0

Browse files
committed
test
1 parent 14d7849 commit b50dba0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Zend/zend_virtual_cwd.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1009,7 +1009,8 @@ static size_t tsrm_realpath_r(char *path, size_t start, size_t len, int *ll, tim
10091009
CWD_API int virtual_file_ex(cwd_state *state, const char *path, verify_path_func verify_path, int use_realpath) /* {{{ */
10101010
{
10111011
size_t path_length = strlen(path);
1012-
char resolved_path[MAXPATHLEN] = {0};
1012+
char resolved_path[MAXPATHLEN];
1013+
memset(resolved_path, 0xAA, MAXPATHLEN);
10131014
size_t start = 1;
10141015
int ll = 0;
10151016
time_t t;

0 commit comments

Comments
 (0)