mirror of
https://github.com/php/php-src.git
synced 2026-04-26 09:28:21 +02:00
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fix iov_base pointer type for illumos
This commit is contained in:
@@ -943,7 +943,7 @@ int zend_file_cache_script_store(zend_persistent_script *script, int in_shm)
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_SYS_UIO_H
|
||||
vec[0].iov_base = &info;
|
||||
vec[0].iov_base = (void *)&info;
|
||||
vec[0].iov_len = sizeof(info);
|
||||
vec[1].iov_base = buf;
|
||||
vec[1].iov_len = script->size;
|
||||
|
||||
Reference in New Issue
Block a user