pixman/test/trap-crasher.c
Søren Sandmann Pedersen 2f876cf867 test/trap-crasher.c: Add trapezoid that demonstrates a crash
This trapezoid causes a crash due to an underflow in the
pixman_trapezoid_valid().

Test case from Ritesh Khadgaray.
2013-11-01 20:24:27 -04:00

40 lines
545 B
C

#include <stdlib.h>
#include "utils.h"
int
main()
{
pixman_image_t *dst;
pixman_trapezoid_t traps[] = {
{
2147483646,
2147483647,
{
{ 0, 0 },
{ 0, 2147483647 }
},
{
{ 65536, 0 },
{ 0, 2147483647 }
}
},
{
32768,
- 2147483647,
{
{ 0, 0 },
{ 0, 2147483647 }
},
{
{ 65536, 0 },
{ 0, 2147483647 }
}
},
};
dst = pixman_image_create_bits (PIXMAN_a8, 1, 1, NULL, -1);
pixman_add_trapezoids (dst, 0, 0, ARRAY_LENGTH (traps), traps);
return (0);
}