Page 1 of 1

*** Error in 'python': double free or corruption

Posted: 2015-10-06T15:06:57-07:00
by ChrisOfBristol
My simple application used to run OK, I've now got Ubuntu MATE 15.10 Beta2 ImageMagick 6.8.9-9 Q16 i686 2015-08-06, Python3.4 and python-wand. I get this error when I get to the wand stuff:
*** Error in `python': double free or corruption (!prev): 0x09de3978 ***
Aborted (core dumped)
This test program gives the same error:

Code: Select all

#! /usr/bin/python3.4

from wand.image import Image
with Image(filename = 'test.JPG') as img:
	imageLS = img.size

Re: *** Error in 'python': double free or corruption

Posted: 2015-10-16T08:31:29-07:00
by ChrisOfBristol
Sorted! I've rewritten the program to use Python-PIL as that is better suited to my application.