If you call eina_shutdown() and afterwards eina_init() eina segaults. Seems to have to do with the logging.

This is the console output:

CRI: eina_log.c:702 eina_log_domain_new() eina_log_print() unknown domain 0, original message format '%s'
Segmentation fault

Sure, it's a strange setup, but it shouldn't happen never the less. Find the attached file to reproduce it.

Peter
#include <Eina.h>

int
main()
{
	Eina_List *list = NULL;

	eina_init();

	list = eina_list_append(list, "bla");
	list = eina_list_remove_list(list, list);

	eina_shutdown();
	eina_init();

	list = eina_list_append(list, "bla");
	list = eina_list_remove_list(list, list);

	eina_shutdown();
}
------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to