We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d71a0dc + 9494b1c commit 465b3abCopy full SHA for 465b3ab
NEWS
@@ -15,6 +15,9 @@ PHP NEWS
15
- Standard:
16
. Fixed bug #71542 (disk_total_space does not work with relative paths). (cmb)
17
18
+- SysVMsg:
19
+ . Fixed bug #78819 (Heap Overflow in msg_send). (cmb)
20
+
21
- XML:
22
. Fixed bug #81351 (xml_parse may fail, but has no error code). (cmb, Nikita)
23
ext/sysvmsg/sysvmsg.c
@@ -368,7 +368,7 @@ PHP_FUNCTION(msg_send)
368
sysvmsg_queue_t * mq = NULL;
369
struct php_msgbuf * messagebuffer = NULL; /* buffer to transmit */
370
int result;
371
- int message_len = 0;
+ size_t message_len = 0;
372
373
RETVAL_FALSE;
374
0 commit comments