Thread: Fix for SHGetSpecialFolderPath

Fix for SHGetSpecialFolderPath

From
"Magnus Hagander"
Date:
Attached patch fixes the SHGetSpecialFolderPath issues on NT4. It does
this by using SHGetFolderPath instead of SHGetSpecialFolderPath, and
linking to shfolder.dll instead of shell32.dll. shfolder.dll exists as a
redistributable from Microsoft in case it is needed on a system, and
it's supported on all current windows platforms.

I have tested the patch on 2003, XP, 2000 and NT4, and it passes on all
of them (I verified that psqlrc.conf and pgpass.conf works - I'm
assuming the rest of the fiels work as well then since they use the same
function to get the file).

MingW and MSVC builds updated, haven't touched the Borland stuff.

Please consider for both 8.0.1 and HEAD. (and if some more win32 ppl can
test it, even better :P)


//Magnus


Attachment

Re: Fix for SHGetSpecialFolderPath

From
Tom Lane
Date:
"Magnus Hagander" <mha@sollentuna.net> writes:
> Attached patch fixes the SHGetSpecialFolderPath issues on NT4. It does
> this by using SHGetFolderPath instead of SHGetSpecialFolderPath, and
> linking to shfolder.dll instead of shell32.dll. shfolder.dll exists as a
> redistributable from Microsoft in case it is needed on a system, and
> it's supported on all current windows platforms.

Applied.

            regards, tom lane