mirror of
https://gitlab.freedesktop.org/freetype/freetype.git
synced 2026-05-16 03:58:07 +02:00
* src/base/ftbitmap.c (FT_Bitmap_Blend): Fix undefined shift.
Reported in https://issues.oss-fuzz.com/issues/510113351
This commit is contained in:
parent
2c041d32fa
commit
9a4751a61d
1 changed files with 2 additions and 2 deletions
|
|
@ -1025,8 +1025,8 @@
|
|||
}
|
||||
}
|
||||
|
||||
atarget_offset->x = fbx.xMin << 6;
|
||||
atarget_offset->y = fbx.yMax << 6;
|
||||
atarget_offset->x = fbx.xMin * 64;
|
||||
atarget_offset->y = fbx.yMax * 64;
|
||||
|
||||
Error:
|
||||
if ( error && free_target_bitmap_on_error )
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue