mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Fix buffer underflow in gd_gif_in.c
This has been fixed upstream in
939d49a3a9
.
This commit is contained in:
parent
c10cb47b5f
commit
2a9fc31021
1 changed files with 1 additions and 1 deletions
|
@ -381,7 +381,7 @@ GetCode_(gdIOCtx *fd, CODE_STATIC_DATA *scd, int code_size, int flag, int *ZeroD
|
|||
if (flag) {
|
||||
scd->curbit = 0;
|
||||
scd->lastbit = 0;
|
||||
scd->last_byte = 0;
|
||||
scd->last_byte = 2;
|
||||
scd->done = FALSE;
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue