[pshinter] Fix numeric overflow.
Reported as https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=11242 * src/pshinter/pshrec.c (ps_dimension_add_t1stem): Implement it.
This commit is contained in:
parent
5b86f53dd6
commit
fbd2452346
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
||||
2018-11-06 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[pshinter] Fix numeric overflow.
|
||||
|
||||
Reported as
|
||||
|
||||
https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=11242
|
||||
|
||||
* src/pshinter/pshrec.c (ps_dimension_add_t1stem): Implement it.
|
||||
|
||||
2018-11-06 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
[psaux] Fix timeout in old CFF engine.
|
||||
|
@ -666,7 +666,7 @@
|
||||
if ( len == -21 )
|
||||
{
|
||||
flags |= PS_HINT_FLAG_BOTTOM;
|
||||
pos += len;
|
||||
pos = ADD_INT( pos, len );
|
||||
}
|
||||
len = 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user