We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcd19cf commit edb5781Copy full SHA for edb5781
NEWS
@@ -29,6 +29,10 @@ PHP NEWS
29
function is by reference). (Nikita Popov)
30
. Fixed bug #51860 (Include fails with toplevel symlink to /). (Dmitry)
31
32
+- FPM
33
+ . Fixed bug #61430 (Transposed memset() params in sapi/fpm/fpm/fpm_shm.c).
34
+ (michaelhood at gmail dot com, Ilia)
35
+
36
- Ibase
37
. Fixed bug #60947 (Segmentation fault while executing ibase_db_info).
38
(Ilia)
sapi/fpm/fpm/fpm_shm.c
@@ -35,7 +35,7 @@ void *fpm_shm_alloc(size_t size) /* {{{ */
return NULL;
}
- memset(mem, size, 0);
+ memset(mem, 0, size);
39
fpm_shm_size += size;
40
return mem;
41
0 commit comments