diff options
| author | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2009-03-28 22:00:06 +0100 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2009-03-28 22:00:06 +0100 |
| commit | 29aeb95a28d518944f1eb268f93a96cbb9dff7f2 (patch) | |
| tree | 154c8870d72229a95f0ab0bd93f8c4d3048b9f91 /src/items.c | |
| parent | d9ff1192a7b5eb7defca68e90e06c68e9b986c94 (diff) | |
| download | cataract-29aeb95a28d518944f1eb268f93a96cbb9dff7f2.tar.xz | |
Multithreading support
Also made progress output a little bit nicer
default = 1 thread at once, for safety reasons
I've encountered critical issues with ImageMagick compiled with OpenMP support. Hope that package maintainers are clever.
ShittyMagickWandGenesis(), ShittyMagickWandTerminus() :-)
Diffstat (limited to 'src/items.c')
| -rw-r--r-- | src/items.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/items.c b/src/items.c index 5cce7c3..255ef5f 100644 --- a/src/items.c +++ b/src/items.c @@ -266,6 +266,10 @@ free_album_data (TAlbum *album) free (item->preview); if (item->border_style) free (item->border_style); + if (item->gen_img_src) + free (item->gen_img_src); + if (item->gen_thumb) + free (item->gen_thumb); free (item); } } |
