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

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
ChrisOfBristol
Posts: 2
Joined: 2015-01-06T01:49:12-07:00
Authentication code: 6789

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

Post 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
ChrisOfBristol
Posts: 2
Joined: 2015-01-06T01:49:12-07:00
Authentication code: 6789

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

Post by ChrisOfBristol »

Sorted! I've rewritten the program to use Python-PIL as that is better suited to my application.
Post Reply