Hi all,
I have written a program in C using VisualStudio 2019. This programs connects to a PostGreSQL DB by means of libpq libraries.
All the needed libraries and DLLs are installed and included in the PATH.
However, the execution of the program crashes.
When I try to debug it from VS2019 I got this error:
myprogram.exe (process 5456) exited with code -1073741701.
In the VS2019 output window I can see these messages:
'myprogram.exe' (Win32): Loaded 'C:\Windows\System32\libssl-1_1-x64.dll'.
'myprogram.exe' (Win32): Loaded 'C:\Windows\System32\libcrypto-1_1-x64.dll'.
'myprogram.exe' (Win32): Loaded 'C:\Windows\System32\libintl-8.dll'.
'myprogram.exe' (Win32): Unloaded 'C:\Windows\System32\libintl-8.dll'
'myprogram.exe' (Win32): Loaded 'C:\Windows\System32\libintl-8.dll'.
'myprogram.exe' (Win32): Unloaded 'C:\Windows\System32\libintl-8.dll'
The thread 0x754 has exited with code -1073741701 (0xc000007b).
The thread 0x3a00 has exited with code -1073741701 (0xc000007b).
The program '[5456] myprogram.exe' has exited with code -1073741701 (0xc000007b).
I have double checked that libintl-8.dll is present in C:\Windows\System32\, and also reinstalled it with no results.
I would appreciate very much any help on this.
Thanks and Regards