[psaux] Fix integer overflow.

Reported as

  https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=30154

* src/psaux/psblues.c (cf2_blues_capture): Use `SUB_INT32`.
This commit is contained in:
Werner Lemberg 2021-02-03 19:16:02 +01:00
parent d3befe1c72
commit 0636dc8af1
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,13 @@
2021-02-03 Werner Lemberg <wl@gnu.org>
[psaux] Fix integer overflow.
Reported as
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=30154
* src/psaux/psblues.c (cf2_blues_capture): Use `SUB_INT32`.
2021-02-02 Alexei Podtelezhnikov <apodtele@gmail.com>
* builds/unix/configure.raw [mmap support]: Explicitly handle Windows.

View File

@ -506,7 +506,8 @@
/* guarantee minimum of 1 pixel overshoot */
dsNew = FT_MIN(
cf2_fixedRound( bottomHintEdge->dsCoord ),
blues->zone[i].dsFlatEdge - cf2_intToFixed( 1 ) );
SUB_INT32 ( blues->zone[i].dsFlatEdge,
cf2_intToFixed( 1 ) ) );
}
else