BUG #3623: initialisation probl.

From: "Guenter Abraham" <abraham(at)itbb(dot)de>
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #3623: initialisation probl.
Date: 2007-09-20 07:11:55
Message-ID: 200709200711.l8K7Bt1h043995@wwwmaster.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs


The following bug has been logged online:

Bug reference: 3623
Logged by: Guenter Abraham
Email address: abraham(at)itbb(dot)de
PostgreSQL version: 8.2
Operating system: winxp
Description: initialisation probl.
Details:

formerly stable programs being generated by ecpg suddenly terminates while
initialization at 0xc0000022

this small program demonstrates the effect:

///-- [
#include <stdio.h>
int main(int argc,char *argv[]) {
printf("tach\n");
return 0;
}

#ifdef ABRAUCH
#include "ecpglib.h"
void nothing(void)
{ ECPGtrans(__LINE__, NULL, "commit");}
#endif

/// -- ]

it terminates while initialization if ABRAUCH is defined. the function
"nothing" is NOT called!!

I'm using mingw:

gcc -v [:Reading specs from
d:/programme/mingw/bin/../lib/gcc/mingw32/3.4.2/specs
Configured with: ../gcc/configure --with-gcc --with-gnu-ld --with-gnu-as
--host=mingw32 --target=mingw32 --prefix=/mingw --enable-threads
--disable-nls --enable-languages=c,c++,f77,ada,objc,java
--disable-win32-registry --disable-shared --enable-sjlj-exceptions
--enable-libgcj --disable-java-awt --without-x --enable-java-gc=boehm
--disable-libgcj-debug --enable-interpreter --enable-hash-synchronization
--enable-libstdcxx-debug
Thread model: win32
gcc version 3.4.2 (mingw-special)
]

I use this generating script [
#
gcc -mno-cygwin -g -c -Wall \ -Id:/Programme/PostgreSQL/8.2/include tst.cc
gcc -g -o tst1.exe tst.o \
D:/lib/libecpg.dll \
-lstdc++
#
gcc -mno-cygwin -DABRAUCH= -g -c -Wall \
-Id:/Programme/PostgreSQL/8.2/include tst.cc
gcc -g -o tst2.exe tst.o \
D:/lib/libecpg.dll \
-lstdc++
]

the effect occures also at pg vers 8.1

with kind regards guenter

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Dave Page 2007-09-20 08:40:44 Re: BUG #3620: superuser password in windows registry
Previous Message ITAGAKI Takahiro 2007-09-20 01:59:07 BUG #3622: pg_rotate_logfile() does not work