. Fixed bug #76839 (socket_recvfrom may return an invalid 'from' address
on MacOS). (Michael Meyer)
+- Standard:
+ . Fixed bug #77395 (segfault about array_multisort). (Laruence)
+
03 Jan 2019, PHP 7.2.14
- Core:
/* }}} */
#define MULTISORT_ABORT \
- efree(ARRAYG(multisort_func)); \
+ efree(func); \
efree(arrays); \
RETURN_FALSE;
int sort_order = PHP_SORT_ASC;
int sort_type = PHP_SORT_REGULAR;
int i, k, n;
+ compare_func_t *func;
ZEND_PARSE_PARAMETERS_START(1, -1)
Z_PARAM_VARIADIC('+', args, argc)
for (i = 0; i < MULTISORT_LAST; i++) {
parse_state[i] = 0;
}
- ARRAYG(multisort_func) = (compare_func_t*)ecalloc(argc, sizeof(compare_func_t));
+ func = ARRAYG(multisort_func) = (compare_func_t*)ecalloc(argc, sizeof(compare_func_t));
/* Here we go through the input arguments and parse them. Each one can
* be either an array or a sort flag which follows an array. If not
/* If all arrays are empty we don't need to do anything. */
if (array_size < 1) {
- efree(ARRAYG(multisort_func));
+ efree(func);
efree(arrays);
RETURN_TRUE;
}
efree(indirect[i]);
}
efree(indirect);
- efree(ARRAYG(multisort_func));
+ efree(func);
efree(arrays);
RETURN_TRUE;
}
--- /dev/null
+--TEST--
+Bug #77395 (segfault about array_multisort)
+--FILE--
+<?php
+function error_handle($level, $message, $file = '', $line = 0){
+ $a = [1,2,3];
+ $b = [3,2,1];
+ echo $message;
+ array_multisort($a, SORT_ASC, $b); // if comment this line, no segfault happen
+}
+set_error_handler('error_handle');
+$data = [['aa'=> 'bb',], ['aa'=> 'bb',],];
+array_multisort(array_column($data, 'bb'),SORT_DESC, $data); // PHP Warning error
+?>
+--EXPECT--
+array_multisort(): Array sizes are inconsistent