Skip to content

Commit 9a42d2b

Browse files
committed
Merge branch 'PHP-8.0'
* PHP-8.0: Fix build
2 parents b091341 + d86c25d commit 9a42d2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/shared_alloc_win32.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ static char *create_name_with_username(char *name)
8080
*(p++) = '@';
8181
p += strlcpy(p, sapi_module.name, 21);
8282
*(p++) = '@';
83-
memcpy(p, accel_system_id, 32);
83+
memcpy(p, zend_system_id, 32);
8484
p += 32;
8585
*(p++) = '\0';
8686
ZEND_ASSERT(p - newname <= sizeof(newname));

0 commit comments

Comments
 (0)