PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-?? ??? 2016, PHP 5.6.28
+?? ??? 2016 PHP 7.0.13
--GD:
+- Core:
+ . Fixed bug #73181 (parse_str() without a second argument leads to crash).
+ (Nikita)
+ . Fixed bug #66773 (Autoload with Opcache allows importing conflicting class
+ name to namespace). (Nikita)
+ . Fixed bug #66862 ((Sub-)Namespaces unexpected behaviour). (Nikita)
+
+- GD:
. Fixed bug #73213 (Integer overflow in imageline() with antialiasing). (cmb)
+ . Fixed bug #73272 (imagescale() is not affected by, but affects
+ imagesetinterpolation()). (cmb)
+- phpdbg:
+ . Properly allow for stdin input from a file. (Bob)
+
- Standard:
. Fixed bug #73203 (passing additional_parameters causes mail to fail). (cmb)
gdImagePtr im;
gdImagePtr im_scaled = NULL;
int new_width, new_height;
- long tmp_w, tmp_h=-1, tmp_m = GD_BILINEAR_FIXED;
+ zend_long tmp_w, tmp_h=-1, tmp_m = GD_BILINEAR_FIXED;
- gdInterpolationMethod method;
+ gdInterpolationMethod method, old_method;
- if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rl|ll", &IM, &tmp_w, &tmp_h, &tmp_m) == FAILURE) {
+ if (zend_parse_parameters(ZEND_NUM_ARGS(), "rl|ll", &IM, &tmp_w, &tmp_h, &tmp_m) == FAILURE) {
return;
}
method = tmp_m;