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.
1 parent 0b7dffb commit 9494b1cCopy full SHA for 9494b1c
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
@@ -414,7 +414,7 @@ PHP_FUNCTION(msg_send)
414
sysvmsg_queue_t * mq = NULL;
415
struct php_msgbuf * messagebuffer = NULL; /* buffer to transmit */
416
int result;
417
- int message_len = 0;
+ size_t message_len = 0;
418
419
RETVAL_FALSE;
420
0 commit comments