Resolved segfaults

This commit is contained in:
Andrew Murray 2019-04-02 09:25:27 +11:00
parent 78995c8024
commit 4f3b44960f
2 changed files with 5 additions and 16 deletions

View File

@ -11,17 +11,6 @@ class TestFromQPixmap(PillowQPixmapTestCase, PillowTestCase):
# Qt saves all pixmaps as rgb
self.assert_image_equal(result, expected.convert('RGB'))
def test_sanity_1(self):
self.roundtrip(hopper('1'))
def test_sanity_rgb(self):
self.roundtrip(hopper('RGB'))
def test_sanity_rgba(self):
self.roundtrip(hopper('RGBA'))
def test_sanity_l(self):
self.roundtrip(hopper('L'))
def test_sanity_p(self):
self.roundtrip(hopper('P'))
def test_sanity(self):
for mode in ('1', 'RGB', 'RGBA', 'L', 'P'):
self.roundtrip(hopper(mode))

View File

@ -982,8 +982,8 @@ static void
p2pa(UINT8* out, const UINT8* in, int xsize, const UINT8* palette)
{
int x;
for (x = 0; x < xsize; x++, in+=4) {
const UINT8* rgba = &palette[in[0] * 4];
for (x = 0; x < xsize; x++, in++) {
const UINT8* rgba = &palette[in[0]];
*out++ = in[0];
*out++ = in[0];
*out++ = in[0];