1 message in com.mysql.lists.plusplusCore dump on Solaris
FromSent OnAttachments
Hugh Watkins11 Dec 2000 11:36 
Subject:Core dump on Solaris
From:Hugh Watkins (HWat@n2bb.com)
Date:12/11/2000 11:36:16 AM
List:com.mysql.lists.plusplus

I was having problems running any of the examples on Solaris (they all dump core).

Looks like the problem is line 48 of connection.cc, change locked = true; mysql.options.my_cnf_file="my"; to: locked = true; mysql.options.my_cnf_file=0;

mysql.options.my_cnf_file gets freed later on and having it point to a static variable causes the core dump.

Hugh