AW: FW: Postgresql on win32 - Mailing list pgsql-hackers

From Zeugswetter Andreas SB
Subject AW: FW: Postgresql on win32
Date
Msg-id 11C1E6749A55D411A9670001FA6879633681CB@sdexcsrv1.f000.d0188.sd.spardat.at
Whole thread Raw
Responses Re: AW: FW: Postgresql on win32  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
> > The problem is that there are strings being allocated from 
> > libpq.dll using PQExpBuffers (for example, initPQExpBuffer() 
> > on line 92 of input.c). These are being allocated using the 
> > malloc function used by libpq.dll. This function *may* be 
> > different from the malloc function used by psql.exe - only 
> > the resulting pointer must be valid. And with the default 
> > linking methods, it *WILL* be different. Later, psql.exe 
> > tries to free() this string, at which point it crashes 
> > because the free() function can't find the allocated block 
> > (it's on the allocated blocks list used by the runtime lib of 
> > libpq.dll).

It is possible to make the above work (at least on MSVC).
The switch is /MD that needs to be used for both the psql.exe and 
libpq.dll. This forces the use of Multithreaded DLL runtime libraries.
The problem at hand is, that it uses different runtime libs for dll and exe
per default, if both use the same runtime libs it is possible to malloc in 
the dll and free in the exe.

Andreas


pgsql-hackers by date:

Previous
From: Zeugswetter Andreas SB
Date:
Subject: AW: AW: AW: AW: Re: tinterval - operator problems on AI X
Next
From: Zeugswetter Andreas SB
Date:
Subject: timestamp (mis)behaviors