[Interest] Problem with: ICU 52.1 + Qt 5.1.1 + C MySQL Connector 6.0.2 + Windows XP

Thales Lange thaleslange at gmail.com
Mon Dec 16 17:20:12 CET 2013


Hi all!

I am sharing a problem with Icu 52.1 + Qt 5.1.1 + C Mysql Connector 
6.0.2. I hope this might be useful to someone.

My system configuration:
1) Microsoft Windows XP Professional (32-bit), version 5.01.2600 Service 
Pack 3
2) MinGW32 4.8.1 rev5 (posix and dwarf)
3) Qt 5.1.1
4) Icu 52.1
5) OpenSSL 1.1.0e
6) C MySQL Connector 6.0.2

I compiled Qt with external ICU and SSL libraries.

Problem: my application doesn't execute queries with QSqlQuery. The 
application can connect to MySQL server but it crashes when a simple 
query is executed (example: “select 1”) and no message returns. [The 
code is attached to this e-mail]

Application log:
========================================
C:\test>test.exe
Is DB open             ?  true
QSqlDatabase lastError :  ""

#############################################

I was only able to find the problem with the program “Dependency 
Walker”. The complete log is attached to this e-mail and the important 
part is:

========================================
00:00:01.542: GetProcAddress(0x77BF0000 
[c:\windows\system32\MSVCRT.DLL], "_get_output_format") called from 
"c:\test\QT5CORE.DLL" at address 0x68A4A844 and returned NULL by thread 
1. Error: No foi possvel encontrar o procedimento especificado (127).
00:00:01.542: GetProcAddress(0x77BF0000 
[c:\windows\system32\MSVCRT.DLL], "_get_output_format") called from 
"c:\test\QT5CORE.DLL" at address 0x68A4A844 and returned NULL by thread 
1. Error: No foi possvel encontrar o procedimento especificado (127).
00:00:01.552: First chance exception 0xC0000005 (Access Violation) 
occurred in "c:\test\QT5CORE.DLL" at address 0x68A11C03 by thread 1.
00:00:01.552: Second chance exception 0xC0000005 (Access Violation) 
occurred in "c:\test\QT5CORE.DLL" at address 0x68A11C03 by thread 1.
00:00:01.572: Exited "c:\test\TEST.EXE" (process 0x59C) with code 
-1073741819 (0xC0000005) by thread 1.
#############################################

The solution was to remove the ICU support from Qt 5.1.1. I didn't try 
other version of ICU.

Did someone experience this problem?

Best regards,
Thales Lange.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: main.cpp
Type: text/x-c++src
Size: 762 bytes
Desc: not available
URL: <http://lists.qt-project.org/pipermail/interest/attachments/20131216/4fb8469b/attachment.cpp>
-------------- next part --------------
#-------------------------------------------------
#
# Project created by QtCreator 2013-12-11T20:59:14
#
#-------------------------------------------------

QT += core sql
QT -= gui widgets

DESTDIR = C:\test

CONFIG -= debug \
    debug_and_release \
    x11

CONFIG *= \
    release       \
    console

TARGET = test
TEMPLATE = app

SOURCES += main.cpp
-------------- next part --------------
Starting profile on 16/12/2013 at 13:55:01

Operating System: Microsoft Windows XP Professional (32-bit), version 5.01.2600 Service Pack 3
Program Executable: c:\test\TEST.EXE
Program Arguments: 
Starting Directory: C:\test\
Search Path: C:\WINDOWS;C:\WINDOWS\system32;C:\WINDOWS\System32\Wbem

Options Selected:
     Simulate ShellExecute by inserting any App Paths directories into the PATH environment variable.
     Log DllMain calls for process attach and process detach messages.
     Log DllMain calls for all other messages, including thread attach and thread detach.
     Hook the process to gather more detailed dependency information.
     Log LoadLibrary function calls.
     Log GetProcAddress function calls.
     Log thread information.
     Use simple thread numbers instead of actual thread IDs.
     Log first chance exceptions.
     Log debug output messages.
     Use full paths when logging file names.
     Log a time stamp with each line of log.
     Automatically open and profile child processes.
--------------------------------------------------------------------------------

00:00:00.000: Started "c:\test\TEST.EXE" (process 0x59C) at address 0x00400000 by thread 1.  Successfully hooked module.
00:00:00.000: Loaded "c:\windows\system32\NTDLL.DLL" at address 0x7C900000 by thread 1.  Successfully hooked module.
00:00:00.050: Loaded "c:\windows\system32\KERNEL32.DLL" at address 0x7C800000 by thread 1.  Successfully hooked module.
00:00:00.050: DllMain(0x7C900000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\NTDLL.DLL" called by thread 1.
00:00:00.050: DllMain(0x7C900000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\NTDLL.DLL" returned 1 (0x1) by thread 1.
00:00:00.050: DllMain(0x7C800000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\KERNEL32.DLL" called by thread 1.
00:00:00.070: DllMain(0x7C800000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\KERNEL32.DLL" returned 1 (0x1) by thread 1.
00:00:00.070: Injected "c:\documents and settings\thalesl\desktop\depends\DEPENDS.DLL" at address 0x08370000 by thread 1.
00:00:00.090: DllMain(0x08370000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\documents and settings\thalesl\desktop\depends\DEPENDS.DLL" called by thread 1.
00:00:00.100: DllMain(0x08370000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\documents and settings\thalesl\desktop\depends\DEPENDS.DLL" returned 1 (0x1) by thread 1.
00:00:00.110: Loaded "c:\test\LIBGCC_S_DW2-1.DLL" at address 0x6E940000 by thread 1.  Successfully hooked module.
00:00:00.120: Loaded "c:\windows\system32\MSVCRT.DLL" at address 0x77BF0000 by thread 1.  Successfully hooked module.
00:00:00.140: Loaded "c:\test\LIBWINPTHREAD-1.DLL" at address 0x64940000 by thread 1.  Successfully hooked module.
00:00:00.150: Loaded "c:\test\LIBSTDC++-6.DLL" at address 0x6FC40000 by thread 1.  Successfully hooked module.
00:00:00.160: Loaded "c:\windows\system32\USER32.DLL" at address 0x7E360000 by thread 1.  Successfully hooked module.
00:00:00.180: Loaded "c:\windows\system32\GDI32.DLL" at address 0x77E50000 by thread 1.  Successfully hooked module.
00:00:00.210: Loaded "c:\test\QT5CORE.DLL" at address 0x68880000 by thread 1.  Successfully hooked module.
00:00:00.230: Loaded "c:\test\ICUIN52.DLL" at address 0x69E00000 by thread 1.  Successfully hooked module.
00:00:00.240: Loaded "c:\test\ICUUC52.DLL" at address 0x66480000 by thread 1.  Successfully hooked module.
00:00:00.250: Loaded "c:\windows\system32\ADVAPI32.DLL" at address 0x77F50000 by thread 1.  Successfully hooked module.
00:00:00.300: Loaded "c:\windows\system32\RPCRT4.DLL" at address 0x77DB0000 by thread 1.  Successfully hooked module.
00:00:00.330: Loaded "c:\windows\system32\SECUR32.DLL" at address 0x77F20000 by thread 1.  Successfully hooked module.
00:00:00.350: Loaded "c:\test\ICUDT52.DLL" at address 0x62100000 by thread 1.  Successfully hooked module.
00:00:00.370: Loaded "c:\windows\system32\OLE32.DLL" at address 0x774C0000 by thread 1.  Successfully hooked module.
00:00:00.390: Loaded "c:\windows\system32\WS2_32.DLL" at address 0x71A70000 by thread 1.  Successfully hooked module.
00:00:00.400: Loaded "c:\windows\system32\WS2HELP.DLL" at address 0x71A60000 by thread 1.  Successfully hooked module.
00:00:00.410: Loaded "c:\test\ZLIB1.DLL" at address 0x62E80000 by thread 1.  Successfully hooked module.
00:00:00.420: Loaded "c:\test\QT5SQL.DLL" at address 0x6D7C0000 by thread 1.  Successfully hooked module.
00:00:00.420: Entrypoint reached. All implicit modules have been loaded.
00:00:00.430: DllMain(0x77BF0000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\windows\system32\MSVCRT.DLL" called by thread 1.
00:00:00.430: GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "InitializeCriticalSectionAndSpinCount") called from "c:\windows\system32\MSVCRT.DLL" at address 0x77C179C2 and returned 0x7C80B8C9 by thread 1.
00:00:00.430: DllMain(0x77BF0000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\windows\system32\MSVCRT.DLL" returned 1 (0x1) by thread 1.
00:00:00.430: DllMain(0x64940000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\test\LIBWINPTHREAD-1.DLL" called by thread 1.
00:00:00.440: DllMain(0x64940000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\test\LIBWINPTHREAD-1.DLL" returned 1 (0x1) by thread 1.
00:00:00.440: DllMain(0x6E940000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\test\LIBGCC_S_DW2-1.DLL" called by thread 1.
00:00:00.440: LoadLibraryA("libgcc_s_dw2-1.dll") called from "c:\test\LIBGCC_S_DW2-1.DLL" at address 0x6E9414E2 by thread 1.
00:00:00.440: LoadLibraryA("libgcc_s_dw2-1.dll") returned 0x6E940000 by thread 1.
00:00:00.440: GetProcAddress(0x6E940000 [c:\test\LIBGCC_S_DW2-1.DLL], "__register_frame_info") called from "c:\test\LIBGCC_S_DW2-1.DLL" at address 0x6E9414FB and returned 0x6E954220 by thread 1.
00:00:00.450: DllMain(0x6E940000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\test\LIBGCC_S_DW2-1.DLL" returned 1 (0x1) by thread 1.
00:00:00.450: DllMain(0x77E50000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\windows\system32\GDI32.DLL" called by thread 1.
00:00:00.450: DllMain(0x77E50000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\windows\system32\GDI32.DLL" returned 1 (0x1) by thread 1.
00:00:00.450: DllMain(0x7E360000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\windows\system32\USER32.DLL" called by thread 1.
00:00:00.450: LoadLibraryW("C:\WINDOWS\system32\IMM32.DLL") called from "c:\windows\system32\USER32.DLL" at address 0x7E39DF6E by thread 1.
00:00:00.460: Loaded "c:\windows\system32\IMM32.DLL" at address 0x76360000 by thread 1.  Successfully hooked module.
00:00:00.460: DllMain(0x76360000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\IMM32.DLL" called by thread 1.
00:00:00.470: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmWINNLSEnableIME") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D476 and returned 0x7636E679 by thread 1.
00:00:00.470: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmWINNLSGetEnableStatus") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D48B and returned 0x7636E6A0 by thread 1.
00:00:00.470: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmSendIMEMessageExW") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D4A0 and returned 0x7636EB34 by thread 1.
00:00:00.470: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmSendIMEMessageExA") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D4B5 and returned 0x7636EB4F by thread 1.
00:00:00.470: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmIMPGetIMEW") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D4CA and returned 0x7636E769 by thread 1.
00:00:00.480: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmIMPGetIMEA") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D4DF and returned 0x7636E79D by thread 1.
00:00:00.480: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmIMPQueryIMEW") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D4F4 and returned 0x7636E804 by thread 1.
00:00:00.480: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmIMPQueryIMEA") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D509 and returned 0x7636E90C by thread 1.
00:00:00.480: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmIMPSetIMEW") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D51E and returned 0x7636E995 by thread 1.
00:00:00.490: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmIMPSetIMEA") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D533 and returned 0x7636EAB9 by thread 1.
00:00:00.490: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmAssociateContext") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D548 and returned 0x76362378 by thread 1.
00:00:00.490: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmEscapeA") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D55D and returned 0x76367C25 by thread 1.
00:00:00.490: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmEscapeW") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D572 and returned 0x76367EA1 by thread 1.
00:00:00.490: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmGetCompositionStringA") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D587 and returned 0x76365B62 by thread 1.
00:00:00.500: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmGetCompositionStringW") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D59C and returned 0x7636548A by thread 1.
00:00:00.500: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmGetCompositionWindow") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D5B1 and returned 0x76363B48 by thread 1.
00:00:00.500: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmGetContext") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D5C6 and returned 0x763623A1 by thread 1.
00:00:00.500: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmGetDefaultIMEWnd") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D5DB and returned 0x763697BE by thread 1.
00:00:00.510: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmIsIME") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D5F0 and returned 0x76368C54 by thread 1.
00:00:00.510: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmReleaseContext") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D605 and returned 0x763629D3 by thread 1.
00:00:00.510: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmRegisterClient") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D61A and returned 0x763622B3 by thread 1.
00:00:00.510: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmGetCompositionFontW") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D62F and returned 0x76364829 by thread 1.
00:00:00.510: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmGetCompositionFontA") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D644 and returned 0x76364791 by thread 1.
00:00:00.520: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmSetCompositionFontW") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D659 and returned 0x763649CE by thread 1.
00:00:00.520: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmSetCompositionFontA") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D66E and returned 0x763648C1 by thread 1.
00:00:00.520: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmSetCompositionWindow") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D683 and returned 0x76364DD6 by thread 1.
00:00:00.520: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmNotifyIME") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D698 and returned 0x76366FD8 by thread 1.
00:00:00.520: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmLockIMC") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D6AD and returned 0x76369F2D by thread 1.
00:00:00.530: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmUnlockIMC") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D6C2 and returned 0x76369F45 by thread 1.
00:00:00.530: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmLoadIME") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D6D7 and returned 0x7636776F by thread 1.
00:00:00.530: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmSetOpenStatus") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D6EC and returned 0x7636470B by thread 1.
00:00:00.530: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmFreeLayout") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D701 and returned 0x76366E43 by thread 1.
00:00:00.530: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmActivateLayout") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D716 and returned 0x763677CD by thread 1.
00:00:00.540: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmGetCandidateWindow") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D72B and returned 0x76363B93 by thread 1.
00:00:00.540: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmSetCandidateWindow") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D740 and returned 0x76364E54 by thread 1.
00:00:00.540: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmConfigureIMEW") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D755 and returned 0x76367A7B by thread 1.
00:00:00.540: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmGetConversionStatus") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D76A and returned 0x76363A86 by thread 1.
00:00:00.540: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmSetConversionStatus") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D77F and returned 0x763645F7 by thread 1.
00:00:00.550: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmSetStatusWindowPos") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D794 and returned 0x76364D6E by thread 1.
00:00:00.550: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmGetImeInfoEx") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D7A9 and returned 0x76369C7F by thread 1.
00:00:00.550: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmLockImeDpi") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D7BE and returned 0x76369BAC by thread 1.
00:00:00.550: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmUnlockImeDpi") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D7D3 and returned 0x76369BFC by thread 1.
00:00:00.550: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmGetOpenStatus") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D7E8 and returned 0x76363AC3 by thread 1.
00:00:00.560: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmSetActiveContext") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D7FD and returned 0x763629DE by thread 1.
00:00:00.560: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmTranslateMessage") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D812 and returned 0x7636DE65 by thread 1.
00:00:00.560: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmLoadLayout") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D827 and returned 0x76368719 by thread 1.
00:00:00.560: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmProcessKey") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D83C and returned 0x7636E0D3 by thread 1.
00:00:00.560: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmPutImeMenuItemsIntoMappedFile") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D851 and returned 0x76372E03 by thread 1.
00:00:00.560: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmGetProperty") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D866 and returned 0x76368B8E by thread 1.
00:00:00.570: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmSetCompositionStringA") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D87B and returned 0x763667D5 by thread 1.
00:00:00.570: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmSetCompositionStringW") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D890 and returned 0x763667FC by thread 1.
00:00:00.570: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmEnumInputContext") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D8A5 and returned 0x763637CA by thread 1.
00:00:00.570: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "ImmSystemHandler") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D8BA and returned 0x76369D74 by thread 1.
00:00:00.570: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "CtfImmTIMActivate") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D8CF and returned 0x76373F0B by thread 1.
00:00:00.580: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "CtfImmRestoreToolbarWnd") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D8E4 and returned 0x763734DA by thread 1.
00:00:00.580: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "CtfImmHideToolbarWnd") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D8F9 and returned 0x76373511 by thread 1.
00:00:00.580: GetProcAddress(0x76360000 [c:\windows\system32\IMM32.DLL], "CtfImmDispatchDefImeMessage") called from "c:\windows\system32\USER32.DLL" at address 0x7E38D90E and returned 0x76374304 by thread 1.
00:00:00.580: DllMain(0x76360000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\IMM32.DLL" returned 1 (0x1) by thread 1.
00:00:00.590: LoadLibraryW("C:\WINDOWS\system32\IMM32.DLL") returned 0x76360000 by thread 1.
00:00:00.600: DllMain(0x7E360000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\windows\system32\USER32.DLL" returned 1 (0x1) by thread 1.
00:00:00.610: DllMain(0x6FC40000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\test\LIBSTDC++-6.DLL" called by thread 1.
00:00:00.610: LoadLibraryA("libgcc_s_dw2-1.dll") called from "c:\test\LIBSTDC++-6.DLL" at address 0x6FC414E2 by thread 1.
00:00:00.610: LoadLibraryA("libgcc_s_dw2-1.dll") returned 0x6E940000 by thread 1.
00:00:00.610: GetProcAddress(0x6E940000 [c:\test\LIBGCC_S_DW2-1.DLL], "__register_frame_info") called from "c:\test\LIBSTDC++-6.DLL" at address 0x6FC414FB and returned 0x6E954220 by thread 1.
00:00:00.610: DllMain(0x6FC40000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\test\LIBSTDC++-6.DLL" returned 1 (0x1) by thread 1.
00:00:00.610: DllMain(0x77F20000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\windows\system32\SECUR32.DLL" called by thread 1.
00:00:00.620: DllMain(0x77F20000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\windows\system32\SECUR32.DLL" returned 1 (0x1) by thread 1.
00:00:00.620: DllMain(0x77DB0000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\windows\system32\RPCRT4.DLL" called by thread 1.
00:00:00.620: DllMain(0x77DB0000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\windows\system32\RPCRT4.DLL" returned 1 (0x1) by thread 1.
00:00:00.620: DllMain(0x77F50000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\windows\system32\ADVAPI32.DLL" called by thread 1.
00:00:00.620: DllMain(0x77F50000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\windows\system32\ADVAPI32.DLL" returned 1 (0x1) by thread 1.
00:00:00.620: DllMain(0x62100000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\test\ICUDT52.DLL" called by thread 1.
00:00:00.630: LoadLibraryA("libgcc_s_dw2-1.dll") called from "c:\test\ICUDT52.DLL" at address 0x621014E2 by thread 1.
00:00:00.630: LoadLibraryA("libgcc_s_dw2-1.dll") returned 0x6E940000 by thread 1.
00:00:00.630: GetProcAddress(0x6E940000 [c:\test\LIBGCC_S_DW2-1.DLL], "__register_frame_info") called from "c:\test\ICUDT52.DLL" at address 0x621014FB and returned 0x6E954220 by thread 1.
00:00:00.630: DllMain(0x62100000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\test\ICUDT52.DLL" returned 1 (0x1) by thread 1.
00:00:00.630: DllMain(0x66480000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\test\ICUUC52.DLL" called by thread 1.
00:00:00.630: LoadLibraryA("libgcc_s_dw2-1.dll") called from "c:\test\ICUUC52.DLL" at address 0x664814E2 by thread 1.
00:00:00.630: LoadLibraryA("libgcc_s_dw2-1.dll") returned 0x6E940000 by thread 1.
00:00:00.630: GetProcAddress(0x6E940000 [c:\test\LIBGCC_S_DW2-1.DLL], "__register_frame_info") called from "c:\test\ICUUC52.DLL" at address 0x664814FB and returned 0x6E954220 by thread 1.
00:00:00.630: DllMain(0x66480000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\test\ICUUC52.DLL" returned 1 (0x1) by thread 1.
00:00:00.630: DllMain(0x69E00000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\test\ICUIN52.DLL" called by thread 1.
00:00:00.691: LoadLibraryA("libgcc_s_dw2-1.dll") called from "c:\test\ICUIN52.DLL" at address 0x69E014E2 by thread 1.
00:00:00.711: LoadLibraryA("libgcc_s_dw2-1.dll") returned 0x6E940000 by thread 1.
00:00:00.711: GetProcAddress(0x6E940000 [c:\test\LIBGCC_S_DW2-1.DLL], "__register_frame_info") called from "c:\test\ICUIN52.DLL" at address 0x69E014FB and returned 0x6E954220 by thread 1.
00:00:00.711: DllMain(0x69E00000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\test\ICUIN52.DLL" returned 1 (0x1) by thread 1.
00:00:00.711: DllMain(0x774C0000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\windows\system32\OLE32.DLL" called by thread 1.
00:00:00.711: DllMain(0x774C0000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\windows\system32\OLE32.DLL" returned 1 (0x1) by thread 1.
00:00:00.721: DllMain(0x71A60000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\windows\system32\WS2HELP.DLL" called by thread 1.
00:00:00.721: DllMain(0x71A60000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\windows\system32\WS2HELP.DLL" returned 1 (0x1) by thread 1.
00:00:00.721: DllMain(0x71A70000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\windows\system32\WS2_32.DLL" called by thread 1.
00:00:00.721: DllMain(0x71A70000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\windows\system32\WS2_32.DLL" returned 1 (0x1) by thread 1.
00:00:00.721: DllMain(0x62E80000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\test\ZLIB1.DLL" called by thread 1.
00:00:00.721: LoadLibraryA("libgcc_s_dw2-1.dll") called from "c:\test\ZLIB1.DLL" at address 0x62E814E2 by thread 1.
00:00:00.731: LoadLibraryA("libgcc_s_dw2-1.dll") returned 0x6E940000 by thread 1.
00:00:00.731: GetProcAddress(0x6E940000 [c:\test\LIBGCC_S_DW2-1.DLL], "__register_frame_info") called from "c:\test\ZLIB1.DLL" at address 0x62E814FB and returned 0x6E954220 by thread 1.
00:00:00.731: DllMain(0x62E80000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\test\ZLIB1.DLL" returned 1 (0x1) by thread 1.
00:00:00.731: DllMain(0x68880000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\test\QT5CORE.DLL" called by thread 1.
00:00:00.731: LoadLibraryA("libgcc_s_dw2-1.dll") called from "c:\test\QT5CORE.DLL" at address 0x688814E2 by thread 1.
00:00:00.731: LoadLibraryA("libgcc_s_dw2-1.dll") returned 0x6E940000 by thread 1.
00:00:00.741: GetProcAddress(0x6E940000 [c:\test\LIBGCC_S_DW2-1.DLL], "__register_frame_info") called from "c:\test\QT5CORE.DLL" at address 0x688814FB and returned 0x6E954220 by thread 1.
00:00:00.741: DllMain(0x68880000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\test\QT5CORE.DLL" returned 1 (0x1) by thread 1.
00:00:00.741: DllMain(0x6D7C0000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\test\QT5SQL.DLL" called by thread 1.
00:00:00.761: LoadLibraryA("libgcc_s_dw2-1.dll") called from "c:\test\QT5SQL.DLL" at address 0x6D7C14E2 by thread 1.
00:00:00.761: LoadLibraryA("libgcc_s_dw2-1.dll") returned 0x6E940000 by thread 1.
00:00:00.761: GetProcAddress(0x6E940000 [c:\test\LIBGCC_S_DW2-1.DLL], "__register_frame_info") called from "c:\test\QT5SQL.DLL" at address 0x6D7C14FB and returned 0x6E954220 by thread 1.
00:00:00.761: DllMain(0x6D7C0000, DLL_PROCESS_ATTACH, 0x0022FD30) in "c:\test\QT5SQL.DLL" returned 1 (0x1) by thread 1.
00:00:00.771: LoadLibraryA("libgcc_s_dw2-1.dll") called from "c:\test\TEST.EXE" at address 0x00401532 by thread 1.
00:00:00.771: LoadLibraryA("libgcc_s_dw2-1.dll") returned 0x6E940000 by thread 1.
00:00:00.771: GetProcAddress(0x6E940000 [c:\test\LIBGCC_S_DW2-1.DLL], "__register_frame_info") called from "c:\test\TEST.EXE" at address 0x0040154B and returned 0x6E954220 by thread 1.
00:00:00.771: LoadLibraryW("C:\WINDOWS\system32\winmm.dll") called from "c:\test\QT5CORE.DLL" at address 0x689DA64B by thread 1.
00:00:00.781: Loaded "c:\windows\system32\WINMM.DLL" at address 0x76B20000 by thread 1.  Successfully hooked module.
00:00:00.781: DllMain(0x76B20000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\WINMM.DLL" called by thread 1.
00:00:00.791: DllMain(0x76B20000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\WINMM.DLL" returned 1 (0x1) by thread 1.
00:00:00.791: LoadLibraryW("C:\WINDOWS\system32\winmm.dll") returned 0x76B20000 by thread 1.
00:00:00.791: GetProcAddress(0x76B20000 [c:\windows\system32\WINMM.DLL], "timeSetEvent") called from "c:\test\QT5CORE.DLL" at address 0x68A0AD83 and returned 0x76B3B090 by thread 1.
00:00:00.791: LoadLibraryW("C:\WINDOWS\system32\winmm.dll") called from "c:\test\QT5CORE.DLL" at address 0x689DA64B by thread 1.
00:00:00.801: LoadLibraryW("C:\WINDOWS\system32\winmm.dll") returned 0x76B20000 by thread 1.
00:00:00.801: GetProcAddress(0x76B20000 [c:\windows\system32\WINMM.DLL], "timeKillEvent") called from "c:\test\QT5CORE.DLL" at address 0x68A0AE0E and returned 0x76B3AA45 by thread 1.
00:00:00.801: GetProcAddress(0x77BF0000 [c:\windows\system32\MSVCRT.DLL], "_get_output_format") called from "c:\test\ICUUC52.DLL" at address 0x66538C44 and returned NULL by thread 1. Error: No foi possvel encontrar o procedimento especificado (127).
00:00:00.811: LoadLibraryExW("C:\test\sqldrivers\qsqlmysql.dll", 0x00000000, DONT_RESOLVE_DLL_REFERENCES) called from "c:\test\QT5CORE.DLL" at address 0x689D7E3E by thread 1.
00:00:00.811: Loaded "c:\test\sqldrivers\QSQLMYSQL.DLL" at address 0x6A580000 by thread 1.  Successfully hooked module.
00:00:00.821: LoadLibraryExW("C:\test\sqldrivers\qsqlmysql.dll", 0x00000000, DONT_RESOLVE_DLL_REFERENCES) returned 0x6A580000 by thread 1.
00:00:00.821: GetProcAddress(0x6A580000 [c:\test\sqldrivers\QSQLMYSQL.DLL], "qt_plugin_query_metadata") called from "c:\test\QT5CORE.DLL" at address 0x689D7E73 and returned 0x6A5816D0 by thread 1.
00:00:00.831: Unloaded "c:\test\sqldrivers\QSQLMYSQL.DLL" at address 0x6A580000 by thread 1.
00:00:00.831: LoadLibraryW("C:\test\sqldrivers\qsqlmysql.dll") called from "c:\test\QT5CORE.DLL" at address 0x689D9DD0 by thread 1.
00:00:00.841: Loaded "c:\test\sqldrivers\QSQLMYSQL.DLL" at address 0x6A580000 by thread 1.  Successfully hooked module.
00:00:00.851: Loaded "c:\test\LIBMYSQL.DLL" at address 0x10000000 by thread 1.  Successfully hooked module.
00:00:00.861: DllMain(0x10000000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\test\LIBMYSQL.DLL" called by thread 1.
00:00:00.871: GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "FlsAlloc") called from "c:\test\LIBMYSQL.DLL" at address 0x100AEFBA and returned NULL by thread 1. Error: No foi possvel encontrar o procedimento especificado (127).
00:00:00.871: GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "FlsGetValue") called from "c:\test\LIBMYSQL.DLL" at address 0x100AEFC7 and returned NULL by thread 1. Error: No foi possvel encontrar o procedimento especificado (127).
00:00:00.871: GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "FlsSetValue") called from "c:\test\LIBMYSQL.DLL" at address 0x100AEFD4 and returned NULL by thread 1. Error: No foi possvel encontrar o procedimento especificado (127).
00:00:00.871: GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "FlsFree") called from "c:\test\LIBMYSQL.DLL" at address 0x100AEFE1 and returned NULL by thread 1. Error: No foi possvel encontrar o procedimento especificado (127).
00:00:00.871: GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\test\LIBMYSQL.DLL" at address 0x100AEB20 and returned 0x7C9133FF by thread 1.
00:00:00.881: GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\test\LIBMYSQL.DLL" at address 0x100AEB20 and returned 0x7C9133FF by thread 1.
00:00:00.881: GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\test\LIBMYSQL.DLL" at address 0x100AEB20 and returned 0x7C9133FF by thread 1.
00:00:00.881: GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\test\LIBMYSQL.DLL" at address 0x100AEB20 and returned 0x7C9133FF by thread 1.
00:00:00.881: GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\test\LIBMYSQL.DLL" at address 0x100AEB20 and returned 0x7C9133FF by thread 1.
00:00:00.891: GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\test\LIBMYSQL.DLL" at address 0x100AEB20 and returned 0x7C9133FF by thread 1.
00:00:00.891: GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\test\LIBMYSQL.DLL" at address 0x100AEB20 and returned 0x7C9133FF by thread 1.
00:00:00.891: GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\test\LIBMYSQL.DLL" at address 0x100AEB9B and returned 0x7C913425 by thread 1.
00:00:00.891: GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\test\LIBMYSQL.DLL" at address 0x100AEB9B and returned 0x7C913425 by thread 1.
00:00:00.901: GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\test\LIBMYSQL.DLL" at address 0x100AECAC and returned 0x7C9133FF by thread 1.
00:00:00.901: GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\test\LIBMYSQL.DLL" at address 0x100AECBC and returned 0x7C913425 by thread 1.
00:00:00.901: GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "IsProcessorFeaturePresent") called from "c:\test\LIBMYSQL.DLL" at address 0x100B28D0 and returned 0x7C80AECA by thread 1.
00:00:00.901: DllMain(0x10000000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\test\LIBMYSQL.DLL" returned 1 (0x1) by thread 1.
00:00:00.911: DllMain(0x6A580000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\test\sqldrivers\QSQLMYSQL.DLL" called by thread 1.
00:00:00.911: LoadLibraryA("libgcc_s_dw2-1.dll") called from "c:\test\sqldrivers\QSQLMYSQL.DLL" at address 0x6A5814E2 by thread 1.
00:00:00.911: LoadLibraryA("libgcc_s_dw2-1.dll") returned 0x6E940000 by thread 1.
00:00:00.921: GetProcAddress(0x6E940000 [c:\test\LIBGCC_S_DW2-1.DLL], "__register_frame_info") called from "c:\test\sqldrivers\QSQLMYSQL.DLL" at address 0x6A5814FB and returned 0x6E954220 by thread 1.
00:00:00.921: DllMain(0x6A580000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\test\sqldrivers\QSQLMYSQL.DLL" returned 1 (0x1) by thread 1.
00:00:00.921: LoadLibraryW("C:\test\sqldrivers\qsqlmysql.dll") returned 0x6A580000 by thread 1.
00:00:00.931: GetProcAddress(0x6A580000 [c:\test\sqldrivers\QSQLMYSQL.DLL], "qt_plugin_instance") called from "c:\test\QT5CORE.DLL" at address 0x689D996D and returned 0x6A5816E0 by thread 1.
00:00:00.941: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "accept") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A81040 by thread 1.
00:00:00.941: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "bind") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A74480 by thread 1.
00:00:00.941: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "closesocket") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A73E2B by thread 1.
00:00:00.941: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "connect") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A74A07 by thread 1.
00:00:00.941: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "getpeername") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A80B68 by thread 1.
00:00:00.941: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "getsockname") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A73D10 by thread 1.
00:00:00.941: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "getsockopt") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A746EA by thread 1.
00:00:00.951: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "htonl") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A72EAD by thread 1.
00:00:00.951: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "htons") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A72E53 by thread 1.
00:00:00.951: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "ioctlsocket") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A73F50 by thread 1.
00:00:00.951: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "inet_addr") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A72EE1 by thread 1.
00:00:00.961: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "inet_ntoa") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A745C1 by thread 1.
00:00:00.961: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "listen") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A78CD3 by thread 1.
00:00:00.961: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "ntohl") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A72EAD by thread 1.
00:00:00.961: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "ntohs") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A72E53 by thread 1.
00:00:00.971: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "recv") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7676F by thread 1.
00:00:00.971: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "recvfrom") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A72FF7 by thread 1.
00:00:00.971: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "select") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A730A8 by thread 1.
00:00:00.971: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "send") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A74C27 by thread 1.
00:00:00.981: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "sendto") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A72F51 by thread 1.
00:00:00.981: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "setsockopt") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A74521 by thread 1.
00:00:00.981: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "shutdown") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A80BF6 by thread 1.
00:00:00.981: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "socket") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A74211 by thread 1.
00:00:00.991: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "gethostbyaddr") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7E491 by thread 1.
00:00:00.991: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "gethostbyname") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A75355 by thread 1.
00:00:00.991: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "getprotobyname") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7E18E by thread 1.
00:00:00.991: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "getprotobynumber") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7E0CC by thread 1.
00:00:01.001: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "getservbyname") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7E703 by thread 1.
00:00:01.001: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "getservbyport") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7E5B5 by thread 1.
00:00:01.001: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "gethostname") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A75449 by thread 1.
00:00:01.001: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAAsyncSelect") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A80991 by thread 1.
00:00:01.011: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAAsyncGetHostByAddr") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7EA43 by thread 1.
00:00:01.011: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAAsyncGetHostByName") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7E99D by thread 1.
00:00:01.011: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAAsyncGetProtoByNumber") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7E2C3 by thread 1.
00:00:01.011: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAAsyncGetProtoByName") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7EAED by thread 1.
00:00:01.021: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAAsyncGetServByPort") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7E913 by thread 1.
00:00:01.021: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAAsyncGetServByName") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7E867 by thread 1.
00:00:01.021: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSACancelAsyncRequest") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7E347 by thread 1.
00:00:01.021: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSASetBlockingHook") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7D4AC by thread 1.
00:00:01.031: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAUnhookBlockingHook") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7D508 by thread 1.
00:00:01.031: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAGetLastError") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A73CCE by thread 1.
00:00:01.031: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSASetLastError") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A72A5E by thread 1.
00:00:01.031: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSACancelBlockingCall") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7D40A by thread 1.
00:00:01.041: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAIsBlocking") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7D459 by thread 1.
00:00:01.041: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAStartup") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A76A55 by thread 1.
00:00:01.041: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSACleanup") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A73FED by thread 1.
00:00:01.041: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAAccept") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A80DC1 by thread 1.
00:00:01.051: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSACloseEvent") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A765E8 by thread 1.
00:00:01.051: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAConnect") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A80C81 by thread 1.
00:00:01.051: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSACreateEvent") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7655D by thread 1.
00:00:01.051: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSADuplicateSocketA") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7DB9A by thread 1.
00:00:01.061: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSADuplicateSocketW") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7DB0C by thread 1.
00:00:01.061: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAEnumNetworkEvents") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7657D by thread 1.
00:00:01.061: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAEnumProtocolsA") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7DC5F by thread 1.
00:00:01.061: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAEnumProtocolsW") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7888C by thread 1.
00:00:01.071: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAEventSelect") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A764D9 by thread 1.
00:00:01.071: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAGetOverlappedResult") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A80D1B by thread 1.
00:00:01.071: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAGetQOSByName") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7F470 by thread 1.
00:00:01.081: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAHtonl") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7BCE1 by thread 1.
00:00:01.081: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAHtons") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7BDC9 by thread 1.
00:00:01.081: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAIoctl") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A73EC0 by thread 1.
00:00:01.081: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAJoinLeaf") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A80F70 by thread 1.
00:00:01.091: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSANtohl") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7BCE1 by thread 1.
00:00:01.091: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSANtohs") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7BDC9 by thread 1.
00:00:01.091: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSARecv") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A74CB5 by thread 1.
00:00:01.091: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSARecvDisconnect") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7F5EE by thread 1.
00:00:01.101: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSARecvFrom") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7F66A by thread 1.
00:00:01.101: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAResetEvent") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A72C80 by thread 1.
00:00:01.101: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSASend") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A768FA by thread 1.
00:00:01.101: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSASendDisconnect") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A80A22 by thread 1.
00:00:01.111: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSASendTo") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A80AAD by thread 1.
00:00:01.111: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSASetEvent") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A72C91 by thread 1.
00:00:01.111: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSASocketA") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A78B6A by thread 1.
00:00:01.111: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSASocketW") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7404E by thread 1.
00:00:01.121: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAWaitForMultipleEvents") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A72C6F by thread 1.
00:00:01.121: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAAddressToStringA") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A79462 by thread 1.
00:00:01.121: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAAddressToStringW") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A76979 by thread 1.
00:00:01.121: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAStringToAddressA") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A79765 by thread 1.
00:00:01.131: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAStringToAddressW") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7281E by thread 1.
00:00:01.131: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSALookupServiceBeginA") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7562A by thread 1.
00:00:01.131: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSALookupServiceBeginW") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A735EF by thread 1.
00:00:01.131: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSALookupServiceNextA") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A75A8D by thread 1.
00:00:01.141: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSALookupServiceNextW") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A73181 by thread 1.
00:00:01.141: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSANSPIoctl") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A75086 by thread 1.
00:00:01.141: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSALookupServiceEnd") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7350E by thread 1.
00:00:01.141: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAInstallServiceClassA") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A803C1 by thread 1.
00:00:01.151: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAInstallServiceClassW") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7FBC9 by thread 1.
00:00:01.151: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSARemoveServiceClass") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7FCB4 by thread 1.
00:00:01.151: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAGetServiceClassInfoA") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A80440 by thread 1.
00:00:01.161: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAGetServiceClassInfoW") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A80159 by thread 1.
00:00:01.161: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAEnumNameSpaceProvidersA") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7F9E1 by thread 1.
00:00:01.161: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAEnumNameSpaceProvidersW") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7FA41 by thread 1.
00:00:01.161: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAGetServiceClassNameByClassIdA") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7FD9F by thread 1.
00:00:01.171: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAGetServiceClassNameByClassIdW") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7FF81 by thread 1.
00:00:01.171: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSASetServiceA") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A804D2 by thread 1.
00:00:01.171: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSASetServiceW") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A80281 by thread 1.
00:00:01.171: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSCDeinstallProvider") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A819C9 by thread 1.
00:00:01.181: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSCInstallProvider") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A81665 by thread 1.
00:00:01.181: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSCEnumProtocols") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A77B61 by thread 1.
00:00:01.181: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSCGetProviderPath") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A78E27 by thread 1.
00:00:01.181: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSCInstallNameSpace") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7F14D by thread 1.
00:00:01.191: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSCUnInstallNameSpace") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7F319 by thread 1.
00:00:01.191: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSCEnableNSProvider") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7EE59 by thread 1.
00:00:01.191: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WPUCompleteOverlappedRequest") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A81CBF by thread 1.
00:00:01.191: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSAProviderConfigChange") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A78C20 by thread 1.
00:00:01.201: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSCWriteProviderOrder") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A81531 by thread 1.
00:00:01.201: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSCWriteNameSpaceOrder") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7F019 by thread 1.
00:00:01.201: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "WSCUpdateProvider") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A81291 by thread 1.
00:00:01.201: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "getaddrinfo") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A72A6F by thread 1.
00:00:01.211: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "GetAddrInfoW") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A72899 by thread 1.
00:00:01.211: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "getnameinfo") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7C689 by thread 1.
00:00:01.211: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "GetNameInfoW") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A7C504 by thread 1.
00:00:01.211: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "freeaddrinfo") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A7737E and returned 0x71A72B0B by thread 1.
00:00:01.221: LoadLibraryA("C:\WINDOWS\System32\mswsock.dll") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A74EA0 by thread 1.
00:00:01.231: Loaded "c:\windows\system32\MSWSOCK.DLL" at address 0x71A10000 by thread 1.  Successfully hooked module.
00:00:01.231: DllMain(0x71A10000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\MSWSOCK.DLL" called by thread 1.
00:00:01.231: DllMain(0x71A10000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\MSWSOCK.DLL" returned 1 (0x1) by thread 1.
00:00:01.231: LoadLibraryA("C:\WINDOWS\System32\mswsock.dll") returned 0x71A10000 by thread 1.
00:00:01.231: GetProcAddress(0x71A10000 [c:\windows\system32\MSWSOCK.DLL], "NSPStartup") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A74EB7 and returned 0x71A1A830 by thread 1.
00:00:01.241: LoadLibraryA("DNSAPI.dll") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1C714 by thread 1.
00:00:01.241: Loaded "c:\windows\system32\DNSAPI.DLL" at address 0x76F00000 by thread 1.  Successfully hooked module.
00:00:01.251: DllMain(0x76F00000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\DNSAPI.DLL" called by thread 1.
00:00:01.251: DllMain(0x76F00000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\DNSAPI.DLL" returned 1 (0x1) by thread 1.
00:00:01.251: LoadLibraryA("DNSAPI.dll") returned 0x76F00000 by thread 1.
00:00:01.251: GetProcAddress(0x76F00000 [c:\windows\system32\DNSAPI.DLL], "DnsQueryConfigAllocEx") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1C6FD and returned 0x76F07A1D by thread 1.
00:00:01.271: LoadLibraryW("rpcrt4.dll") called from "c:\windows\system32\RPCRT4.DLL" at address 0x77DCC735 by thread 1.
00:00:01.271: LoadLibraryW("rpcrt4.dll") returned 0x77DB0000 by thread 1.
00:00:01.281: GetProcAddress(0x76F00000 [c:\windows\system32\DNSAPI.DLL], "DnsApiFree") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1C6FD and returned 0x76F03761 by thread 1.
00:00:01.281: GetProcAddress(0x76F00000 [c:\windows\system32\DNSAPI.DLL], "DnsQuery_W") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1C6FD and returned 0x76F02D94 by thread 1.
00:00:01.291: GetProcAddress(0x76F00000 [c:\windows\system32\DNSAPI.DLL], "DnsRecordListFree") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1C6FD and returned 0x76F05AD3 by thread 1.
00:00:01.291: LoadLibraryA("C:\WINDOWS\System32\winrnr.dll") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A74EA0 by thread 1.
00:00:01.291: Loaded "c:\windows\system32\WINRNR.DLL" at address 0x76F90000 by thread 1.  Successfully hooked module.
00:00:01.291: Loaded "c:\windows\system32\WLDAP32.DLL" at address 0x76F40000 by thread 1.  Successfully hooked module.
00:00:01.301: DllMain(0x76F40000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\WLDAP32.DLL" called by thread 1.
00:00:01.301: DllMain(0x76F40000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\WLDAP32.DLL" returned 1 (0x1) by thread 1.
00:00:01.301: DllMain(0x76F90000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\WINRNR.DLL" called by thread 1.
00:00:01.311: DllMain(0x76F90000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\WINRNR.DLL" returned 1 (0x1) by thread 1.
00:00:01.311: LoadLibraryA("C:\WINDOWS\System32\winrnr.dll") returned 0x76F90000 by thread 1.
00:00:01.311: GetProcAddress(0x76F90000 [c:\windows\system32\WINRNR.DLL], "NSPStartup") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A74EB7 and returned 0x76F91688 by thread 1.
00:00:01.311: LoadLibraryA("C:\WINDOWS\System32\mswsock.dll") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A74EA0 by thread 1.
00:00:01.321: LoadLibraryA("C:\WINDOWS\System32\mswsock.dll") returned 0x71A10000 by thread 1.
00:00:01.321: GetProcAddress(0x71A10000 [c:\windows\system32\MSWSOCK.DLL], "NSPStartup") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A74EB7 and returned 0x71A1A830 by thread 1.
00:00:01.321: LoadLibraryA("rasadhlp.dll") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A74FB8 by thread 1.
00:00:01.321: Loaded "c:\windows\system32\RASADHLP.DLL" at address 0x76FA0000 by thread 1.  Successfully hooked module.
00:00:01.331: DllMain(0x76FA0000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\RASADHLP.DLL" called by thread 1.
00:00:01.331: DllMain(0x76FA0000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\RASADHLP.DLL" returned 1 (0x1) by thread 1.
00:00:01.331: LoadLibraryA("rasadhlp.dll") returned 0x76FA0000 by thread 1.
00:00:01.331: GetProcAddress(0x76FA0000 [c:\windows\system32\RASADHLP.DLL], "WSAttemptAutodialAddr") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A74FCF and returned 0x76FA1AF3 by thread 1.
00:00:01.341: GetProcAddress(0x76FA0000 [c:\windows\system32\RASADHLP.DLL], "WSAttemptAutodialName") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A74FE1 and returned 0x76FA11A0 by thread 1.
00:00:01.341: GetProcAddress(0x76FA0000 [c:\windows\system32\RASADHLP.DLL], "WSNoteSuccessfulHostentLookup") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A74FF3 and returned 0x76FA13A0 by thread 1.
00:00:01.341: LoadLibraryA("C:\WINDOWS\system32\ws2_32") called from "c:\test\LIBMYSQL.DLL" at address 0x10009A8C by thread 1.
00:00:01.341: LoadLibraryA("C:\WINDOWS\system32\ws2_32") returned 0x71A70000 by thread 1.
00:00:01.351: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "getaddrinfo") called from "c:\test\LIBMYSQL.DLL" at address 0x10009AA6 and returned 0x71A72A6F by thread 1.
00:00:01.351: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "getaddrinfo") called from "c:\test\LIBMYSQL.DLL" at address 0x10009AFE and returned 0x71A72A6F by thread 1.
00:00:01.351: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "getnameinfo") called from "c:\test\LIBMYSQL.DLL" at address 0x10009AFE and returned 0x71A7C689 by thread 1.
00:00:01.351: GetProcAddress(0x71A70000 [c:\windows\system32\WS2_32.DLL], "freeaddrinfo") called from "c:\test\LIBMYSQL.DLL" at address 0x10009AFE and returned 0x71A72B0B by thread 1.
00:00:01.361: LoadLibraryA("C:\WINDOWS\system32\mswsock.dll") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A778F1 by thread 1.
00:00:01.361: LoadLibraryA("C:\WINDOWS\system32\mswsock.dll") returned 0x71A10000 by thread 1.
00:00:01.361: GetProcAddress(0x71A10000 [c:\windows\system32\MSWSOCK.DLL], "WSPStartup") called from "c:\windows\system32\WS2_32.DLL" at address 0x71A77908 and returned 0x71A1C29B by thread 1.
00:00:01.361: LoadLibraryW("hnetcfg.dll") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1C0C3 by thread 1.
00:00:01.371: Loaded "c:\windows\system32\HNETCFG.DLL" at address 0x60B30000 by thread 1.  Successfully hooked module.
00:00:01.371: DllMain(0x60B30000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\HNETCFG.DLL" called by thread 1.
00:00:01.382: DllMain(0x60B30000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\HNETCFG.DLL" returned 1 (0x1) by thread 1.
00:00:01.382: LoadLibraryW("hnetcfg.dll") returned 0x60B30000 by thread 1.
00:00:01.382: GetProcAddress(0x60B30000 [c:\windows\system32\HNETCFG.DLL], "IcfOpenDynamicFwPort") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1C0DB and returned 0x60B5AF3F by thread 1.
00:00:01.392: GetProcAddress(0x60B30000 [c:\windows\system32\HNETCFG.DLL], "IcfDisconnect") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1C0EA and returned 0x60B5AD91 by thread 1.
00:00:01.392: GetProcAddress(0x60B30000 [c:\windows\system32\HNETCFG.DLL], "IcfConnect") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1C0F9 and returned 0x60B5B384 by thread 1.
00:00:01.392: LoadLibraryA("C:\WINDOWS\System32\mswsock.dll") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1C359 by thread 1.
00:00:01.402: LoadLibraryA("C:\WINDOWS\System32\mswsock.dll") returned 0x71A10000 by thread 1.
00:00:01.402: LoadLibraryW("C:\WINDOWS\System32\wshtcpip.dll") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1BB83 by thread 1.
00:00:01.402: Loaded "c:\windows\system32\WSHTCPIP.DLL" at address 0x71A50000 by thread 1.  Successfully hooked module.
00:00:01.402: DllMain(0x71A50000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\WSHTCPIP.DLL" called by thread 1.
00:00:01.412: DllMain(0x71A50000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\WSHTCPIP.DLL" returned 1 (0x1) by thread 1.
00:00:01.412: LoadLibraryW("C:\WINDOWS\System32\wshtcpip.dll") returned 0x71A50000 by thread 1.
00:00:01.412: GetProcAddress(0x71A50000 [c:\windows\system32\WSHTCPIP.DLL], "WSHOpenSocket") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1BBBB and returned 0x71A54046 by thread 1.
00:00:01.412: GetProcAddress(0x71A50000 [c:\windows\system32\WSHTCPIP.DLL], "WSHOpenSocket2") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1BBCC and returned 0x71A51480 by thread 1.
00:00:01.422: GetProcAddress(0x71A50000 [c:\windows\system32\WSHTCPIP.DLL], "WSHJoinLeaf") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1BBE6 and returned 0x71A5406F by thread 1.
00:00:01.422: GetProcAddress(0x71A50000 [c:\windows\system32\WSHTCPIP.DLL], "WSHNotify") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1BBF7 and returned 0x71A51304 by thread 1.
00:00:01.422: GetProcAddress(0x71A50000 [c:\windows\system32\WSHTCPIP.DLL], "WSHGetSocketInformation") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1BC10 and returned 0x71A51660 by thread 1.
00:00:01.422: GetProcAddress(0x71A50000 [c:\windows\system32\WSHTCPIP.DLL], "WSHSetSocketInformation") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1BC29 and returned 0x71A51741 by thread 1.
00:00:01.422: GetProcAddress(0x71A50000 [c:\windows\system32\WSHTCPIP.DLL], "WSHGetSockaddrType") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1BC42 and returned 0x71A5127D by thread 1.
00:00:01.422: GetProcAddress(0x71A50000 [c:\windows\system32\WSHTCPIP.DLL], "WSHGetWildcardSockaddr") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1BC5D and returned 0x71A51C99 by thread 1.
00:00:01.432: GetProcAddress(0x71A50000 [c:\windows\system32\WSHTCPIP.DLL], "WSHGetBroadcastSockaddr") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1BC72 and returned 0x71A53554 by thread 1.
00:00:01.432: GetProcAddress(0x71A50000 [c:\windows\system32\WSHTCPIP.DLL], "WSHAddressToString") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1BC87 and returned 0x71A51C26 by thread 1.
00:00:01.432: GetProcAddress(0x71A50000 [c:\windows\system32\WSHTCPIP.DLL], "WSHStringToAddress") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1BC9C and returned 0x71A52152 by thread 1.
00:00:01.432: GetProcAddress(0x71A50000 [c:\windows\system32\WSHTCPIP.DLL], "WSHIoctl") called from "c:\windows\system32\MSWSOCK.DLL" at address 0x71A1BCB1 and returned 0x71A51A89 by thread 1.
00:00:01.542: GetProcAddress(0x77BF0000 [c:\windows\system32\MSVCRT.DLL], "_get_output_format") called from "c:\test\QT5CORE.DLL" at address 0x68A4A844 and returned NULL by thread 1. Error: No foi possvel encontrar o procedimento especificado (127).
00:00:01.542: GetProcAddress(0x77BF0000 [c:\windows\system32\MSVCRT.DLL], "_get_output_format") called from "c:\test\QT5CORE.DLL" at address 0x68A4A844 and returned NULL by thread 1. Error: No foi possvel encontrar o procedimento especificado (127).
00:00:01.552: First chance exception 0xC0000005 (Access Violation) occurred in "c:\test\QT5CORE.DLL" at address 0x68A11C03 by thread 1.
00:00:01.552: Second chance exception 0xC0000005 (Access Violation) occurred in "c:\test\QT5CORE.DLL" at address 0x68A11C03 by thread 1.
00:00:01.572: Exited "c:\test\TEST.EXE" (process 0x59C) with code -1073741819 (0xC0000005) by thread 1.


More information about the Interest mailing list