mirror of
https://github.com/php/php-src.git
synced 2025-01-26 21:54:16 +08:00
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fix #78849: GD build broken with -D SIGNED_COMPARE_SLOW
This commit is contained in:
commit
b78ec58f09
3
NEWS
3
NEWS
@ -7,6 +7,9 @@ PHP NEWS
|
||||
. Fixed bug #78810 (RW fetches do not throw "uninitialized property"
|
||||
exception). (Nikita)
|
||||
|
||||
- GD:
|
||||
. Fixed bug #78849 (GD build broken with -D SIGNED_COMPARE_SLOW). (cmb)
|
||||
|
||||
- FPM:
|
||||
. Fixed bug #76601 (Partially working php-fpm ater incomplete reload).
|
||||
(Maksim Nikulin)
|
||||
|
@ -548,7 +548,7 @@ compress(int init_bits, gdIOCtxPtr outfile, gdImagePtr im, GifCtx *ctx)
|
||||
output( (code_int)ctx->ClearCode, ctx );
|
||||
|
||||
#ifdef SIGNED_COMPARE_SLOW
|
||||
while ( (c = GIFNextPixel( im )) != (unsigned) EOF ) {
|
||||
while ( (c = GIFNextPixel( im, ctx )) != (unsigned) EOF ) {
|
||||
#else /*SIGNED_COMPARE_SLOW*/
|
||||
while ( (c = GIFNextPixel( im, ctx )) != EOF ) { /* } */
|
||||
#endif /*SIGNED_COMPARE_SLOW*/
|
||||
|
Loading…
Reference in New Issue
Block a user