Search found 1 match

by Alxv
2013-03-07T01:28:10-07:00
Forum: MagickWand
Topic: Segmentation fault at dlclose
Replies: 1
Views: 11179

Segmentation fault at dlclose

I'm loading libmagickwand dynamicly with dlopen . But my program segfault at dlclose . Here it is program source code: #include <stdlib.h> #include <stdio.h> #include <string.h> #include <inttypes.h> #include <dlfcn.h> typedef enum {   MagickFalse = 0,   MagickTrue = 1 } MagickBooleanType; typedef e...