The program:

#include <libpq++.H>
#include <unistd.h>


void main() {
   char *db = "dbname=ncadb";
   while (true) {
      PgConnection data(db);
   }
}


The output:
Segmentation fault (core dumped)
#include <libpq++.H>
#include <unistd.h>


void main() {
   char *db = "dbname=ncadb";
   while (true) {    
      PgConnection data(db);
   }
}


core

Reply via email to