| delorie.com/archives/browse.cgi | search |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sources.redhat.com/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sources.redhat.com/ml/#faqs> |
| Sender: | cygwin-owner AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| Delivered-To: | mailing list cygwin AT cygwin DOT com |
| X-Authentication-Warning: | piz.ethz.ch: fmarchal owned process doing -bs |
| Date: | Fri, 28 Nov 2003 01:46:00 +0100 (MET) |
| From: | Fabrice Marchal <fmarchal AT inf DOT ethz DOT ch> |
| X-X-Sender: | fmarchal AT piz DOT ethz DOT ch |
| To: | cygwin AT cygwin DOT com |
| Subject: | Crash of mysql under cygwin with g++ 3.3.1 |
| Message-ID: | <Pine.LNX.4.44.0311280144210.25293-100000@piz.ethz.ch> |
| MIME-Version: | 1.0 |
| X-Virus-Scanned: | by amavisd-new at inf.ethz.ch |
| X-Spam-Checker-Version: | SpamAssassin 2.60 (1.212-2003-09-23-exp) on medoc |
I dont know if this is a problem of mysql, g++ or
cygwin but the following simple code keeps crashing with g++3.3.1
Platform: cygwin-1.5.5, mysql 3.23 (and mysql 4.1 as well).
Note that the code does not crash if all the mysql_ calls are
made from inside the "main()" block. GDB reports that the crash occurs
when returning from the Connection() constructor.
The code was working with former g++2.95 under cygwin.
#include "mysql.h"
#include <iostream>
using namespace std;
class Connection{
MYSQL *mysql;
public:
Connection(){
mysql = mysql_init( NULL );
if( mysql == 0 ){
cerr << "failed to init" << endl;
exit(-1); }
mysql_real_connect( mysql, "", "", "", "test", 3306, NULL, 0);
}
};
int main( int argc, char** args ){
Connection con;
}
--
========================================================================
Fabrice Marchal http://www.inf.ethz.ch/~marchal
fabrice DOT marchal AT ieee DOT org marchal AT inf DOT ethz DOT ch +41-(0)1-632-56-79
ETH Zurich, CoLab Computational Laboratory FAX:+41-(0)1-632-17-03
========================================================================
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |