Then running Valgrind I stumbled up on a couple of leaks in mk_lib.c
ctx->workers allocated in mklib_start is never free'd on mklib_stop. Add free(ctx->workers); above free(ctx); config->plugins allocated in mk_config.c:mk_config_set_init_values Add free(config->plugins); above free(config);I also did notice that then building with --debug, on "make install" it strips debugging symbols from the lib, so one has to manually copy the real untouched library into place.
Regards Björn
_______________________________________________ Monkey mailing list [email protected] http://lists.monkey-project.com/listinfo/monkey
