Re: BUG #13980: UNINITIALIZED READ

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема Re: BUG #13980: UNINITIALIZED READ
Дата
Msg-id 20160223213321.GA379252@alvherre.pgsql
обсуждение исходный текст
Ответ на BUG #13980: UNINITIALIZED READ  (ranier_gyn@hotmail.com)
Список pgsql-bugs
Hi Ranier, thanks for the test code.  Please make sure to keep
pgsql-bugs@postgresql.org in CC when replying.  (Since the previous
email didn't make it to the list, I'm quoting it in whole below).

A large number of these reports appear to be unrelated to Postgres code,
as they don't even have libpq.dll in the trace.  Perhaps you should
report those to Microsoft instead?  I don't think we're likely to that
this report very seriously unless that weed is pruned.

> windows xp 32 bits.

Not a particularly recent operating system, eh?


Ranier VF wrote:
> Hi,
> file: bug_13980.c
> #include <assert.h>
> #ifdef _WIN32
> #include <winsock2.h>
> #include <ws2tcpip.h>
> #else
> #include <arpa/inet.h>
> #endif
> #include <libpq-fe.h>
>
>
> int main(void)
> {
>     const char * sql;
>     const PGconn * conn;
>     const PGresult * pg_res;
>
>     conn = PQconnectdb("dbname='rcpdv' user='postgres' password='..'");
>     if (conn == NULL) {
>        exit(1);
>     }
> sql = "SELECT * FROM tbPrices;";
>     pg_res = PQexec(conn, (char *) sql);
>     if (pg_res == NULL) {
>        exit(2);
>     }
>     if (PQresultStatus(pg_res) != PGRES_TUPLES_OK) {
>        PQclear(pg_res);
>        exit(3);
>     }
> PQfinish(conn);
> exit(0);
> }
>
> msvc 2010 32 bits.
> windows xp 32 bits.
> postgresql 9.5.0.
>
> Best regards,
>
> Ranier Vilela
> -----------------------------------------------------------------------------------------------
> From: ranier_gyn@hotmail.com
> To: alvherre@2ndquadrant.com
> Subject: RE: [BUGS] BUG #13980: UNINITIALIZED READ
> Date: Tue, 23 Feb 2016 20:49:28 +0000
>
> Hi,
> Not.
> DBD C functions are internal.
>
> I can ensure that PQfinish is called correcty.
> Summary:
> 1.  conn = PQconnectdb(conn_str);
> 2.  pg_res = PQexec(dbd->conn, (char *) sql);
> 3.  PQfinish(conn);
>
> Report are make by Dr.Memory.
>
> Best regards,
>
> Ranier Vilela
>
> > Date: Tue, 23 Feb 2016 17:37:51 -0300
> > From: alvherre@2ndquadrant.com
> > To: ranier_gyn@hotmail.com
> > CC: pgsql-bugs@postgresql.org
> > Subject: Re: [BUGS] BUG #13980: UNINITIALIZED READ
> >
> > ranier_gyn@hotmail.com wrote:
> >
> > > Potential Error #1: UNINITIALIZED READ: reading 0x0012f3dc-0x0012f3e0 4
> > > byte(s)
> >
> > > # 9 dbd_pgsql_open
> > > [c:\usr\src\dbd\postgresql\dbd_pgsql.c:190]
> > > #10 dbd_init [c:\usr\src\dbd\dbd.c:81]
> > > #11 sr_app_data_setup [c:\usr\src\sirius\app\app_dbd.c:241]
> > > #12 main [c:\usr\src\rcpdv\app.c:140]
> > > Note: @0:00:04.953 in thread 2700
> > > Note: instruction: cmp %ecx (%eax)
> >
> > This bug, and the three HANDLE leaks you reported, appear to pertain to
> > DBD::Pg. It would be better to report this to the dbd-pg mailing list
> > https://metacpan.org/pod/DBD::Pg#AUTHORS or perhaps open a bug in
> > https://rt.cpan.org/Public/Dist/Display.html?Name=DBD-Pg
> > I advise including a test program that shows the problem.
> >
> > --
> > Álvaro Herrera http://www.2ndQuadrant.com/
> > PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

> Dr. Memory version 1.9.16820 build 139668946 built on Jan 20 2016 12:21:04
> Dr. Memory errors that are likely to be false positives, for pid 2544: "bug13980.exe"
> These errors matched the blacklist 'C:\WINDOWS*.d??' for 4 frames.
> Run with -lib_blacklist_frames 0 to treat these as regular errors.
> If these are all false positives and your focus is unaddressable errors, consider running with -light to skip all
uninitializedreads and leaks for higher performance. 
>
> Potential Error #1: UNINITIALIZED READ: reading 0x0012fb90-0x0012fb94 4 byte(s)
> # 0 ADVAPI32.dll!RegDeleteValueW  +0xf5     (0x77f5eed6 <ADVAPI32.dll+0xeed6>)
> # 1 WS2_32.dll!WSCEnumProtocols   +0xa63    (0x71a785c5 <WS2_32.dll+0x85c5>)
> # 2 WS2_32.dll!WSCEnumProtocols   +0x9a1    (0x71a78503 <WS2_32.dll+0x8503>)
> # 3 WS2_32.dll!WSCEnumProtocols   +0x839    (0x71a7839b <WS2_32.dll+0x839b>)
> # 4 WS2_32.dll!WSCEnumProtocols   +0x75b    (0x71a782bd <WS2_32.dll+0x82bd>)
> # 5 WS2_32.dll!WSCEnumProtocols   +0x43d    (0x71a77f9f <WS2_32.dll+0x7f9f>)
> # 6 WS2_32.dll!WSCEnumProtocols   +0x34d    (0x71a77eaf <WS2_32.dll+0x7eaf>)
> # 7 LIBPQ.dll!PQpingParams        +0x1174   (0x10006ed5 <LIBPQ.dll+0x6ed5>)
> # 8 LIBPQ.dll!PQconnectdb         +0x8      (0x10005069 <LIBPQ.dll+0x5069>)
> # 9 main                           [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:00.657 in thread 4076
> Note: instruction: cmp    %ecx (%eax)
>
> Potential Error #2: UNINITIALIZED READ: reading 0x77fc6318-0x77fc6328 16 byte(s) within 0x77fc6318-0x77fc6418
> # 0 system call NtDeviceIoControlFile InputBuffer
> # 1 ntdll.dll!ZwDeviceIoControlFile                            +0xb      (0x7c90d26c <ntdll.dll+0xd26c>)
> # 2 KERNEL32.dll!DeviceIoControl                               +0x4b     (0x7c801675 <KERNEL32.dll+0x1675>)
> # 3 ADVAPI32.dll!MD4Update                                     +0x854    (0x77f59549 <ADVAPI32.dll+0x9549>)
> # 4 ADVAPI32.dll!SystemFunction036                             +0x1b0    (0x77f58443 <ADVAPI32.dll+0x8443>)
> # 5 ADVAPI32.dll!SystemFunction036                             +0xe5     (0x77f58378 <ADVAPI32.dll+0x8378>)
> # 6 ADVAPI32.dll!SystemFunction036                             +0xa8     (0x77f5833b <ADVAPI32.dll+0x833b>)
> # 7 ADVAPI32.dll!SystemFunction036                             +0x50     (0x77f582e3 <ADVAPI32.dll+0x82e3>)
> # 8 ADVAPI32.dll!SystemFunction036                             +0x13     (0x77f582a6 <ADVAPI32.dll+0x82a6>)
> # 9 RPCRT4.dll!UuidCreate                                      +0xa3     (0x77db62f8 <RPCRT4.dll+0x62f8>)
> #10 RPCRT4.dll!RpcSsDestroyClientContext                       +0x6dd    (0x77de1fd7 <RPCRT4.dll+0x31fd7>)
> #11 RPCRT4.dll!RpcSsDestroyClientContext                       +0x5d9    (0x77de1ed3 <RPCRT4.dll+0x31ed3>)
> #12 RPCRT4.dll!I_RpcBindingIsClientLocal                       +0x35b    (0x77dc7718 <RPCRT4.dll+0x17718>)
> #13 RPCRT4.dll!NdrConformantArrayFree                          +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> #14 RPCRT4.dll!I_RpcGetBufferWithObject                        +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> #15 RPCRT4.dll!I_RpcGetBuffer                                  +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> #16 RPCRT4.dll!NdrGetBuffer                                    +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #17 RPCRT4.dll!NdrClientCall2                                  +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #18 DNSAPI.dll!DnsQueryConfig                                  +0x233    (0x76f07ca4 <DNSAPI.dll+0x7ca4>)
> #19 DNSAPI.dll!DnsQueryConfig                                  +0x1f4    (0x76f07c65 <DNSAPI.dll+0x7c65>)
> Note: @0:00:01.375 in thread 4076
>
> Potential Error #3: UNINITIALIZED READ: reading register ebx
> # 0 RPCRT4.dll!UuidCreate                  +0x186    (0x77db63da <RPCRT4.dll+0x63da>)
> # 1 RPCRT4.dll!UuidCreate                  +0x106    (0x77db635b <RPCRT4.dll+0x635b>)
> # 2 RPCRT4.dll!UuidCreate                  +0xc4     (0x77db6319 <RPCRT4.dll+0x6319>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext   +0x6dd    (0x77de1fd7 <RPCRT4.dll+0x31fd7>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x5d9    (0x77de1ed3 <RPCRT4.dll+0x31ed3>)
> # 5 RPCRT4.dll!I_RpcBindingIsClientLocal   +0x35b    (0x77dc7718 <RPCRT4.dll+0x17718>)
> # 6 RPCRT4.dll!NdrConformantArrayFree      +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 7 RPCRT4.dll!I_RpcGetBufferWithObject    +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> # 8 RPCRT4.dll!I_RpcGetBuffer              +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> # 9 RPCRT4.dll!NdrGetBuffer                +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #10 RPCRT4.dll!NdrClientCall2              +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x233    (0x76f07ca4 <DNSAPI.dll+0x7ca4>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x1f4    (0x76f07c65 <DNSAPI.dll+0x7c65>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x16e    (0x76f07bdf <DNSAPI.dll+0x7bdf>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2e8e   (0x71a1b5c0 <MSWSOCK.dll+0xb5c0>)
> #15 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #16 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #17 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #18 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #19 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> Note: @0:00:01.391 in thread 4076
> Note: instruction: mov    (%ebx,%esi) -> %al
>
> Potential Error #4: UNINITIALIZED READ: reading register ebx
> # 0 RPCRT4.dll!UuidCreate                  +0x19a    (0x77db63ee <RPCRT4.dll+0x63ee>)
> # 1 RPCRT4.dll!UuidCreate                  +0x106    (0x77db635b <RPCRT4.dll+0x635b>)
> # 2 RPCRT4.dll!UuidCreate                  +0xc4     (0x77db6319 <RPCRT4.dll+0x6319>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext   +0x6dd    (0x77de1fd7 <RPCRT4.dll+0x31fd7>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x5d9    (0x77de1ed3 <RPCRT4.dll+0x31ed3>)
> # 5 RPCRT4.dll!I_RpcBindingIsClientLocal   +0x35b    (0x77dc7718 <RPCRT4.dll+0x17718>)
> # 6 RPCRT4.dll!NdrConformantArrayFree      +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 7 RPCRT4.dll!I_RpcGetBufferWithObject    +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> # 8 RPCRT4.dll!I_RpcGetBuffer              +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> # 9 RPCRT4.dll!NdrGetBuffer                +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #10 RPCRT4.dll!NdrClientCall2              +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x233    (0x76f07ca4 <DNSAPI.dll+0x7ca4>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x1f4    (0x76f07c65 <DNSAPI.dll+0x7c65>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x16e    (0x76f07bdf <DNSAPI.dll+0x7bdf>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2e8e   (0x71a1b5c0 <MSWSOCK.dll+0xb5c0>)
> #15 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #16 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #17 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #18 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #19 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> Note: @0:00:01.391 in thread 4076
> Note: instruction: mov    (%ebx,%esi) -> %al
>
> Potential Error #5: UNINITIALIZED READ: reading register ebx
> # 0 RPCRT4.dll!UuidCreate                  +0x1af    (0x77db6403 <RPCRT4.dll+0x6403>)
> # 1 RPCRT4.dll!UuidCreate                  +0x106    (0x77db635b <RPCRT4.dll+0x635b>)
> # 2 RPCRT4.dll!UuidCreate                  +0xc4     (0x77db6319 <RPCRT4.dll+0x6319>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext   +0x6dd    (0x77de1fd7 <RPCRT4.dll+0x31fd7>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x5d9    (0x77de1ed3 <RPCRT4.dll+0x31ed3>)
> # 5 RPCRT4.dll!I_RpcBindingIsClientLocal   +0x35b    (0x77dc7718 <RPCRT4.dll+0x17718>)
> # 6 RPCRT4.dll!NdrConformantArrayFree      +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 7 RPCRT4.dll!I_RpcGetBufferWithObject    +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> # 8 RPCRT4.dll!I_RpcGetBuffer              +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> # 9 RPCRT4.dll!NdrGetBuffer                +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #10 RPCRT4.dll!NdrClientCall2              +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x233    (0x76f07ca4 <DNSAPI.dll+0x7ca4>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x1f4    (0x76f07c65 <DNSAPI.dll+0x7c65>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x16e    (0x76f07bdf <DNSAPI.dll+0x7bdf>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2e8e   (0x71a1b5c0 <MSWSOCK.dll+0xb5c0>)
> #15 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #16 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #17 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #18 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #19 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> Note: @0:00:01.391 in thread 4076
> Note: instruction: mov    (%ebx,%esi) -> %al
>
> Potential Error #6: UNINITIALIZED READ: reading register ebx
> # 0 RPCRT4.dll!UuidCreate                  +0x1c4    (0x77db6418 <RPCRT4.dll+0x6418>)
> # 1 RPCRT4.dll!UuidCreate                  +0x106    (0x77db635b <RPCRT4.dll+0x635b>)
> # 2 RPCRT4.dll!UuidCreate                  +0xc4     (0x77db6319 <RPCRT4.dll+0x6319>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext   +0x6dd    (0x77de1fd7 <RPCRT4.dll+0x31fd7>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x5d9    (0x77de1ed3 <RPCRT4.dll+0x31ed3>)
> # 5 RPCRT4.dll!I_RpcBindingIsClientLocal   +0x35b    (0x77dc7718 <RPCRT4.dll+0x17718>)
> # 6 RPCRT4.dll!NdrConformantArrayFree      +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 7 RPCRT4.dll!I_RpcGetBufferWithObject    +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> # 8 RPCRT4.dll!I_RpcGetBuffer              +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> # 9 RPCRT4.dll!NdrGetBuffer                +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #10 RPCRT4.dll!NdrClientCall2              +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x233    (0x76f07ca4 <DNSAPI.dll+0x7ca4>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x1f4    (0x76f07c65 <DNSAPI.dll+0x7c65>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x16e    (0x76f07bdf <DNSAPI.dll+0x7bdf>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2e8e   (0x71a1b5c0 <MSWSOCK.dll+0xb5c0>)
> #15 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #16 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #17 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #18 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #19 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> Note: @0:00:01.391 in thread 4076
> Note: instruction: mov    (%ebx,%esi) -> %al
>
> Potential Error #7: UNINITIALIZED READ: reading 0x0012e3b8-0x0012e3d4 28 byte(s) within 0x0012e3b0-0x0012e46c
> # 0 system call NtConnectPort parameter #6
> # 1 ntdll.dll!ZwConnectPort                             +0xb      (0x7c90d03c <ntdll.dll+0xd03c>)
> # 2 RPCRT4.dll!RpcSsDestroyClientContext                +0x899    (0x77de2193 <RPCRT4.dll+0x32193>)
> # 3 RPCRT4.dll!NdrTypeFlags                             +0x36f    (0x77db60a8 <RPCRT4.dll+0x60a8>)
> # 4 RPCRT4.dll!NdrTypeFlags                             +0x37b    (0x77db60b4 <RPCRT4.dll+0x60b4>)
> # 5 RPCRT4.dll!RpcSsDestroyClientContext                +0xf5     (0x77de19ef <RPCRT4.dll+0x319ef>)
> # 6 RPCRT4.dll!RpcSsDestroyClientContext                +0x75     (0x77de196f <RPCRT4.dll+0x3196f>)
> # 7 RPCRT4.dll!NdrConformantArrayFree                   +0x600    (0x77dbbff7 <RPCRT4.dll+0xbff7>)
> # 8 RPCRT4.dll!NdrConformantArrayFree                   +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 9 RPCRT4.dll!I_RpcGetBufferWithObject                 +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> #10 RPCRT4.dll!I_RpcGetBuffer                           +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> #11 RPCRT4.dll!NdrGetBuffer                             +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #12 RPCRT4.dll!NdrClientCall2                           +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #13 DNSAPI.dll!DnsQueryConfig                           +0x233    (0x76f07ca4 <DNSAPI.dll+0x7ca4>)
> #14 DNSAPI.dll!DnsQueryConfig                           +0x1f4    (0x76f07c65 <DNSAPI.dll+0x7c65>)
> #15 DNSAPI.dll!DnsQueryConfig                           +0x16e    (0x76f07bdf <DNSAPI.dll+0x7bdf>)
> #16 MSWSOCK.dll!SvchostPushServiceGlobals               +0x2e8e   (0x71a1b5c0 <MSWSOCK.dll+0xb5c0>)
> #17 MSWSOCK.dll!WSPStartup                              +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #18 MSWSOCK.dll!WSPStartup                              +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #19 WS2_32.dll!WSARecv                                  +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> Note: @0:00:01.422 in thread 4076
>
> Potential Error #8: UNINITIALIZED READ: reading 0x77fc631f-0x77fc632f 16 byte(s) within 0x77fc6318-0x77fc6418
> # 0 system call NtDeviceIoControlFile InputBuffer
> # 1 ntdll.dll!ZwDeviceIoControlFile                            +0xb      (0x7c90d26c <ntdll.dll+0xd26c>)
> # 2 KERNEL32.dll!DeviceIoControl                               +0x4b     (0x7c801675 <KERNEL32.dll+0x1675>)
> # 3 ADVAPI32.dll!MD4Update                                     +0x854    (0x77f59549 <ADVAPI32.dll+0x9549>)
> # 4 ADVAPI32.dll!SystemFunction036                             +0x1b0    (0x77f58443 <ADVAPI32.dll+0x8443>)
> # 5 ADVAPI32.dll!SystemFunction036                             +0xe5     (0x77f58378 <ADVAPI32.dll+0x8378>)
> # 6 ADVAPI32.dll!SystemFunction036                             +0xa8     (0x77f5833b <ADVAPI32.dll+0x833b>)
> # 7 ADVAPI32.dll!SystemFunction036                             +0x50     (0x77f582e3 <ADVAPI32.dll+0x82e3>)
> # 8 ADVAPI32.dll!SystemFunction036                             +0x13     (0x77f582a6 <ADVAPI32.dll+0x82a6>)
> # 9 RPCRT4.dll!UuidCreate                                      +0xa3     (0x77db62f8 <RPCRT4.dll+0x62f8>)
> #10 RPCRT4.dll!RpcSsDestroyClientContext                       +0x6dd    (0x77de1fd7 <RPCRT4.dll+0x31fd7>)
> #11 RPCRT4.dll!RpcSsDestroyClientContext                       +0x5d9    (0x77de1ed3 <RPCRT4.dll+0x31ed3>)
> #12 RPCRT4.dll!I_RpcBindingIsClientLocal                       +0x35b    (0x77dc7718 <RPCRT4.dll+0x17718>)
> #13 RPCRT4.dll!NdrConformantArrayFree                          +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> #14 RPCRT4.dll!I_RpcGetBufferWithObject                        +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> #15 RPCRT4.dll!I_RpcGetBuffer                                  +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> #16 RPCRT4.dll!NdrGetBuffer                                    +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #17 RPCRT4.dll!NdrClientCall2                                  +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #18 DNSAPI.dll!DnsQueryConfig                                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #19 DNSAPI.dll!DnsQueryConfig                                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> Note: @0:00:01.579 in thread 4076
>
> Potential Error #9: UNINITIALIZED READ: reading register ebx
> # 0 RPCRT4.dll!UuidCreate                  +0x186    (0x77db63da <RPCRT4.dll+0x63da>)
> # 1 RPCRT4.dll!UuidCreate                  +0x106    (0x77db635b <RPCRT4.dll+0x635b>)
> # 2 RPCRT4.dll!UuidCreate                  +0xc4     (0x77db6319 <RPCRT4.dll+0x6319>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext   +0x6dd    (0x77de1fd7 <RPCRT4.dll+0x31fd7>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x5d9    (0x77de1ed3 <RPCRT4.dll+0x31ed3>)
> # 5 RPCRT4.dll!I_RpcBindingIsClientLocal   +0x35b    (0x77dc7718 <RPCRT4.dll+0x17718>)
> # 6 RPCRT4.dll!NdrConformantArrayFree      +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 7 RPCRT4.dll!I_RpcGetBufferWithObject    +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> # 8 RPCRT4.dll!I_RpcGetBuffer              +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> # 9 RPCRT4.dll!NdrGetBuffer                +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #10 RPCRT4.dll!NdrClientCall2              +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #14 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #15 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #16 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #17 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #18 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #19 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> Note: @0:00:01.625 in thread 4076
> Note: instruction: mov    (%ebx,%esi) -> %al
>
> Potential Error #10: UNINITIALIZED READ: reading register ebx
> # 0 RPCRT4.dll!UuidCreate                  +0x19a    (0x77db63ee <RPCRT4.dll+0x63ee>)
> # 1 RPCRT4.dll!UuidCreate                  +0x106    (0x77db635b <RPCRT4.dll+0x635b>)
> # 2 RPCRT4.dll!UuidCreate                  +0xc4     (0x77db6319 <RPCRT4.dll+0x6319>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext   +0x6dd    (0x77de1fd7 <RPCRT4.dll+0x31fd7>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x5d9    (0x77de1ed3 <RPCRT4.dll+0x31ed3>)
> # 5 RPCRT4.dll!I_RpcBindingIsClientLocal   +0x35b    (0x77dc7718 <RPCRT4.dll+0x17718>)
> # 6 RPCRT4.dll!NdrConformantArrayFree      +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 7 RPCRT4.dll!I_RpcGetBufferWithObject    +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> # 8 RPCRT4.dll!I_RpcGetBuffer              +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> # 9 RPCRT4.dll!NdrGetBuffer                +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #10 RPCRT4.dll!NdrClientCall2              +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #14 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #15 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #16 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #17 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #18 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #19 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> Note: @0:00:01.625 in thread 4076
> Note: instruction: mov    (%ebx,%esi) -> %al
>
> Potential Error #11: UNINITIALIZED READ: reading register ebx
> # 0 RPCRT4.dll!UuidCreate                  +0x1af    (0x77db6403 <RPCRT4.dll+0x6403>)
> # 1 RPCRT4.dll!UuidCreate                  +0x106    (0x77db635b <RPCRT4.dll+0x635b>)
> # 2 RPCRT4.dll!UuidCreate                  +0xc4     (0x77db6319 <RPCRT4.dll+0x6319>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext   +0x6dd    (0x77de1fd7 <RPCRT4.dll+0x31fd7>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x5d9    (0x77de1ed3 <RPCRT4.dll+0x31ed3>)
> # 5 RPCRT4.dll!I_RpcBindingIsClientLocal   +0x35b    (0x77dc7718 <RPCRT4.dll+0x17718>)
> # 6 RPCRT4.dll!NdrConformantArrayFree      +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 7 RPCRT4.dll!I_RpcGetBufferWithObject    +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> # 8 RPCRT4.dll!I_RpcGetBuffer              +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> # 9 RPCRT4.dll!NdrGetBuffer                +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #10 RPCRT4.dll!NdrClientCall2              +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #14 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #15 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #16 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #17 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #18 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #19 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> Note: @0:00:01.625 in thread 4076
> Note: instruction: mov    (%ebx,%esi) -> %al
>
> Potential Error #12: UNINITIALIZED READ: reading register ebx
> # 0 RPCRT4.dll!UuidCreate                  +0x1c4    (0x77db6418 <RPCRT4.dll+0x6418>)
> # 1 RPCRT4.dll!UuidCreate                  +0x106    (0x77db635b <RPCRT4.dll+0x635b>)
> # 2 RPCRT4.dll!UuidCreate                  +0xc4     (0x77db6319 <RPCRT4.dll+0x6319>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext   +0x6dd    (0x77de1fd7 <RPCRT4.dll+0x31fd7>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x5d9    (0x77de1ed3 <RPCRT4.dll+0x31ed3>)
> # 5 RPCRT4.dll!I_RpcBindingIsClientLocal   +0x35b    (0x77dc7718 <RPCRT4.dll+0x17718>)
> # 6 RPCRT4.dll!NdrConformantArrayFree      +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 7 RPCRT4.dll!I_RpcGetBufferWithObject    +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> # 8 RPCRT4.dll!I_RpcGetBuffer              +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> # 9 RPCRT4.dll!NdrGetBuffer                +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #10 RPCRT4.dll!NdrClientCall2              +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #14 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #15 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #16 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #17 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #18 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #19 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> Note: @0:00:01.625 in thread 4076
> Note: instruction: mov    (%ebx,%esi) -> %al
>
> Potential Error #13: UNINITIALIZED READ: reading 0x0012e320-0x0012e33c 28 byte(s) within 0x0012e318-0x0012e3d4
> # 0 system call NtConnectPort parameter #6
> # 1 ntdll.dll!ZwConnectPort                             +0xb      (0x7c90d03c <ntdll.dll+0xd03c>)
> # 2 RPCRT4.dll!RpcSsDestroyClientContext                +0x899    (0x77de2193 <RPCRT4.dll+0x32193>)
> # 3 RPCRT4.dll!NdrTypeFlags                             +0x36f    (0x77db60a8 <RPCRT4.dll+0x60a8>)
> # 4 RPCRT4.dll!NdrTypeFlags                             +0x37b    (0x77db60b4 <RPCRT4.dll+0x60b4>)
> # 5 RPCRT4.dll!RpcSsDestroyClientContext                +0xf5     (0x77de19ef <RPCRT4.dll+0x319ef>)
> # 6 RPCRT4.dll!RpcSsDestroyClientContext                +0x75     (0x77de196f <RPCRT4.dll+0x3196f>)
> # 7 RPCRT4.dll!NdrConformantArrayFree                   +0x600    (0x77dbbff7 <RPCRT4.dll+0xbff7>)
> # 8 RPCRT4.dll!NdrConformantArrayFree                   +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 9 RPCRT4.dll!I_RpcGetBufferWithObject                 +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> #10 RPCRT4.dll!I_RpcGetBuffer                           +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> #11 RPCRT4.dll!NdrGetBuffer                             +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #12 RPCRT4.dll!NdrClientCall2                           +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #13 DNSAPI.dll!DnsQueryConfig                           +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #14 DNSAPI.dll!DnsQueryConfig                           +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #15 DNSAPI.dll!DnsQueryConfig                           +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #16 DNSAPI.dll!DnsQueryConfig                           +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #17 DNSAPI.dll!DnsQuery_W                               +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #18 MSWSOCK.dll!SvchostPushServiceGlobals               +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #19 MSWSOCK.dll!WSPStartup                              +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> Note: @0:00:01.625 in thread 4076
>
> Potential Error #14: UNINITIALIZED READ: reading 0x00f346e0-0x00f346e4 4 byte(s)
> # 0 RPCRT4.dll!NdrpMemoryIncrement         +0x380    (0x77dba97d <RPCRT4.dll+0xa97d>)
> # 1 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 2 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 3 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 4 RPCRT4.dll!NdrClientCall2              +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 5 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> # 6 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> # 7 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> # 8 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> # 9 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #10 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #11 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #12 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #13 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #14 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #15 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> #16 WS2_32.dll!htons                       +0x42     (0x71a72e96 <WS2_32.dll+0x2e96>)
> #17 WS2_32.dll!WSALookupServiceBeginW      +0x14e    (0x71a7373e <WS2_32.dll+0x373e>)
> #18 WS2_32.dll!WSALookupServiceBeginW      +0x83     (0x71a73673 <WS2_32.dll+0x3673>)
> #19 WS2_32.dll!WSALookupServiceNextA       +0x676    (0x71a76104 <WS2_32.dll+0x6104>)
> Note: @0:00:01.625 in thread 4076
> Note: instruction: cmp    (%ecx) $0x00000000
>
> Potential Error #15: UNINITIALIZED READ: reading register eax
> # 0 RPCRT4.dll!RpcSsDestroyClientContext    +0x13bd   (0x77de2cb6 <RPCRT4.dll+0x32cb6>)
> # 1 RPCRT4.dll!NdrFixedArrayUnmarshall      +0x374    (0x77dce60c <RPCRT4.dll+0x1e60c>)
> # 2 RPCRT4.dll!NdrComplexStructUnmarshall   +0x81     (0x77dc69ab <RPCRT4.dll+0x169ab>)
> # 3 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 4 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 5 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 6 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 7 RPCRT4.dll!NdrClientCall2               +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 8 DNSAPI.dll!DnsQueryConfig               +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> # 9 DNSAPI.dll!DnsQueryConfig               +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #10 DNSAPI.dll!DnsQueryConfig               +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #11 DNSAPI.dll!DnsQueryConfig               +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #12 DNSAPI.dll!DnsQuery_W                   +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #13 MSWSOCK.dll!SvchostPushServiceGlobals   +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #14 MSWSOCK.dll!WSPStartup                  +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #15 MSWSOCK.dll!WSPStartup                  +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #16 WS2_32.dll!WSARecv                      +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #17 WS2_32.dll!WSARecv                      +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #18 WS2_32.dll!WSARecv                      +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> #19 WS2_32.dll!htons                        +0x42     (0x71a72e96 <WS2_32.dll+0x2e96>)
> Note: @0:00:01.641 in thread 4076
> Note: instruction: test   %eax %eax
>
> Potential Error #16: UNINITIALIZED READ: reading register eflags
> # 0 RPCRT4.dll!NdrGetTypeFlags              +0x368    (0x77db965c <RPCRT4.dll+0x965c>)
> # 1 RPCRT4.dll!RpcSsDestroyClientContext    +0x1405   (0x77de2cff <RPCRT4.dll+0x32cff>)
> # 2 RPCRT4.dll!NdrFixedArrayUnmarshall      +0x374    (0x77dce60c <RPCRT4.dll+0x1e60c>)
> # 3 RPCRT4.dll!NdrComplexStructUnmarshall   +0x81     (0x77dc69ab <RPCRT4.dll+0x169ab>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 8 RPCRT4.dll!NdrClientCall2               +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 9 DNSAPI.dll!DnsQueryConfig               +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #10 DNSAPI.dll!DnsQueryConfig               +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #11 DNSAPI.dll!DnsQueryConfig               +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #12 DNSAPI.dll!DnsQueryConfig               +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #13 DNSAPI.dll!DnsQuery_W                   +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals   +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #15 MSWSOCK.dll!WSPStartup                  +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #16 MSWSOCK.dll!WSPStartup                  +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #17 WS2_32.dll!WSARecv                      +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #18 WS2_32.dll!WSARecv                      +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #19 WS2_32.dll!WSARecv                      +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> Note: @0:00:01.641 in thread 4076
> Note: instruction: jo     $0x77df08fd
>
> Potential Error #17: UNINITIALIZED READ: reading register eax
> # 0 RPCRT4.dll!NdrGetTypeFlags              +0x378    (0x77db966c <RPCRT4.dll+0x966c>)
> # 1 RPCRT4.dll!RpcSsDestroyClientContext    +0x1405   (0x77de2cff <RPCRT4.dll+0x32cff>)
> # 2 RPCRT4.dll!NdrFixedArrayUnmarshall      +0x374    (0x77dce60c <RPCRT4.dll+0x1e60c>)
> # 3 RPCRT4.dll!NdrComplexStructUnmarshall   +0x81     (0x77dc69ab <RPCRT4.dll+0x169ab>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 8 RPCRT4.dll!NdrClientCall2               +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 9 DNSAPI.dll!DnsQueryConfig               +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #10 DNSAPI.dll!DnsQueryConfig               +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #11 DNSAPI.dll!DnsQueryConfig               +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #12 DNSAPI.dll!DnsQueryConfig               +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #13 DNSAPI.dll!DnsQuery_W                   +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals   +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #15 MSWSOCK.dll!WSPStartup                  +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #16 MSWSOCK.dll!WSPStartup                  +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #17 WS2_32.dll!WSARecv                      +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #18 WS2_32.dll!WSARecv                      +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #19 WS2_32.dll!WSARecv                      +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> Note: @0:00:01.641 in thread 4076
> Note: instruction: cmp    %eax $0x7fffffff
>
> Potential Error #18: UNINITIALIZED READ: reading 0x00f346e8-0x00f346ec 4 byte(s)
> # 0 RPCRT4.dll!NdrpMemoryIncrement         +0x380    (0x77dba97d <RPCRT4.dll+0xa97d>)
> # 1 RPCRT4.dll!NdrComplexStructFree        +0x2a5    (0x77dc6e49 <RPCRT4.dll+0x16e49>)
> # 2 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 3 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrClientCall2              +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 7 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> # 8 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> # 9 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #10 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #11 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #12 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #13 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #14 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #15 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #16 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #17 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> #18 WS2_32.dll!htons                       +0x42     (0x71a72e96 <WS2_32.dll+0x2e96>)
> #19 WS2_32.dll!WSALookupServiceBeginW      +0x14e    (0x71a7373e <WS2_32.dll+0x373e>)
> Note: @0:00:01.641 in thread 4076
> Note: instruction: cmp    (%ecx) $0x00000000
>
> Potential Error #19: UNINITIALIZED READ: reading 0x0012e3d4-0x0012e3d8 4 byte(s)
> # 0 RPCRT4.dll!NdrGetTypeFlags                 +0x3c7    (0x77db96bb <RPCRT4.dll+0x96bb>)
> # 1 RPCRT4.dll!NdrConformantStringUnmarshall   +0x6a     (0x77dbf35b <RPCRT4.dll+0xf35b>)
> # 2 RPCRT4.dll!NdrConformantStringUnmarshall   +0x22e    (0x77dbf51f <RPCRT4.dll+0xf51f>)
> # 3 RPCRT4.dll!NdrComplexStructFree            +0x2a5    (0x77dc6e49 <RPCRT4.dll+0x16e49>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 8 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 9 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #10 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #11 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #12 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #13 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #15 MSWSOCK.dll!WSPStartup                     +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #16 MSWSOCK.dll!WSPStartup                     +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #17 WS2_32.dll!WSARecv                         +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #18 WS2_32.dll!WSARecv                         +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #19 WS2_32.dll!WSARecv                         +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> Note: @0:00:01.641 in thread 4076
> Note: instruction: test   0x08(%ebp) %eax
>
> Potential Error #20: UNINITIALIZED READ: reading register ecx
> # 0 RPCRT4.dll!NdrConformantStringUnmarshall   +0x124    (0x77dbf414 <RPCRT4.dll+0xf414>)
> # 1 RPCRT4.dll!NdrConformantStringUnmarshall   +0xb9     (0x77dbf3aa <RPCRT4.dll+0xf3aa>)
> # 2 RPCRT4.dll!NdrConformantStringUnmarshall   +0x22e    (0x77dbf51f <RPCRT4.dll+0xf51f>)
> # 3 RPCRT4.dll!NdrComplexStructFree            +0x2a5    (0x77dc6e49 <RPCRT4.dll+0x16e49>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 8 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 9 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #10 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #11 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #12 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #13 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #15 MSWSOCK.dll!WSPStartup                     +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #16 MSWSOCK.dll!WSPStartup                     +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #17 WS2_32.dll!WSARecv                         +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #18 WS2_32.dll!WSARecv                         +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #19 WS2_32.dll!WSARecv                         +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> Note: @0:00:01.641 in thread 4076
> Note: instruction: test   %ecx %ecx
>
> Potential Error #21: UNINITIALIZED READ: reading register esi
> # 0 RPCRT4.dll!NdrConformantStringUnmarshall   +0x132    (0x77dbf422 <RPCRT4.dll+0xf422>)
> # 1 RPCRT4.dll!NdrConformantStringUnmarshall   +0xb9     (0x77dbf3aa <RPCRT4.dll+0xf3aa>)
> # 2 RPCRT4.dll!NdrConformantStringUnmarshall   +0x22e    (0x77dbf51f <RPCRT4.dll+0xf51f>)
> # 3 RPCRT4.dll!NdrComplexStructFree            +0x2a5    (0x77dc6e49 <RPCRT4.dll+0x16e49>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 8 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 9 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #10 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #11 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #12 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #13 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #15 MSWSOCK.dll!WSPStartup                     +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #16 MSWSOCK.dll!WSPStartup                     +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #17 WS2_32.dll!WSARecv                         +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #18 WS2_32.dll!WSARecv                         +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #19 WS2_32.dll!WSARecv                         +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> Note: @0:00:01.641 in thread 4076
> Note: instruction: test   %esi %esi
>
> Potential Error #22: UNINITIALIZED READ: reading register ecx
> # 0 RPCRT4.dll!NdrConformantStringUnmarshall   +0x13d    (0x77dbf42d <RPCRT4.dll+0xf42d>)
> # 1 RPCRT4.dll!NdrConformantStringUnmarshall   +0xb9     (0x77dbf3aa <RPCRT4.dll+0xf3aa>)
> # 2 RPCRT4.dll!NdrConformantStringUnmarshall   +0x22e    (0x77dbf51f <RPCRT4.dll+0xf51f>)
> # 3 RPCRT4.dll!NdrComplexStructFree            +0x2a5    (0x77dc6e49 <RPCRT4.dll+0x16e49>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 8 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 9 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #10 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #11 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #12 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #13 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #15 MSWSOCK.dll!WSPStartup                     +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #16 MSWSOCK.dll!WSPStartup                     +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #17 WS2_32.dll!WSARecv                         +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #18 WS2_32.dll!WSARecv                         +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #19 WS2_32.dll!WSARecv                         +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: cmp    %ecx %esi
>
> Potential Error #23: UNINITIALIZED READ: reading register dl
> # 0 RPCRT4.dll!NdrConformantStringUnmarshall   +0x19b    (0x77dbf48b <RPCRT4.dll+0xf48b>)
> # 1 RPCRT4.dll!NdrConformantStringUnmarshall   +0xb9     (0x77dbf3aa <RPCRT4.dll+0xf3aa>)
> # 2 RPCRT4.dll!NdrConformantStringUnmarshall   +0x22e    (0x77dbf51f <RPCRT4.dll+0xf51f>)
> # 3 RPCRT4.dll!NdrComplexStructFree            +0x2a5    (0x77dc6e49 <RPCRT4.dll+0x16e49>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 8 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 9 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #10 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #11 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #12 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #13 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #15 MSWSOCK.dll!WSPStartup                     +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #16 MSWSOCK.dll!WSPStartup                     +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #17 WS2_32.dll!WSARecv                         +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #18 WS2_32.dll!WSARecv                         +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #19 WS2_32.dll!WSARecv                         +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: test   %dl %dl
>
> Potential Error #24: UNINITIALIZED READ: reading 0x0012e5dc-0x0012e5e0 4 byte(s)
> # 0 RPCRT4.dll!NdrComplexStructFree        +0x27a    (0x77dc6e1d <RPCRT4.dll+0x16e1d>)
> # 1 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 2 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 3 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 4 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 5 RPCRT4.dll!NdrClientCall2              +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 6 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> # 7 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> # 8 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> # 9 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #10 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #11 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #12 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #13 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #14 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #15 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #16 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> #17 WS2_32.dll!htons                       +0x42     (0x71a72e96 <WS2_32.dll+0x2e96>)
> #18 WS2_32.dll!WSALookupServiceBeginW      +0x14e    (0x71a7373e <WS2_32.dll+0x373e>)
> #19 WS2_32.dll!WSALookupServiceBeginW      +0x83     (0x71a73673 <WS2_32.dll+0x3673>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: cmp    0x34(%esi) $0x00000000
>
> Potential Error #25: UNINITIALIZED READ: reading 0x0012e400-0x0012e404 4 byte(s)
> # 0 RPCRT4.dll!NdrGetTypeFlags              +0x3c7    (0x77db96bb <RPCRT4.dll+0x96bb>)
> # 1 RPCRT4.dll!NdrConformantArrayMarshall   +0x4f     (0x77dbb8d0 <RPCRT4.dll+0xb8d0>)
> # 2 RPCRT4.dll!NdrFixedArrayUnmarshall      +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 3 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 4 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 5 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 6 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 7 RPCRT4.dll!NdrClientCall2               +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 8 DNSAPI.dll!DnsQueryConfig               +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> # 9 DNSAPI.dll!DnsQueryConfig               +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #10 DNSAPI.dll!DnsQueryConfig               +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #11 DNSAPI.dll!DnsQueryConfig               +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #12 DNSAPI.dll!DnsQuery_W                   +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #13 MSWSOCK.dll!SvchostPushServiceGlobals   +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #14 MSWSOCK.dll!WSPStartup                  +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #15 MSWSOCK.dll!WSPStartup                  +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #16 WS2_32.dll!WSARecv                      +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #17 WS2_32.dll!WSARecv                      +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #18 WS2_32.dll!WSARecv                      +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> #19 WS2_32.dll!htons                        +0x42     (0x71a72e96 <WS2_32.dll+0x2e96>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: test   0x08(%ebp) %eax
>
> Potential Error #26: UNINITIALIZED READ: reading register edi
> # 0 RPCRT4.dll!NdrOutInit                   +0x1f6    (0x77dba1b5 <RPCRT4.dll+0xa1b5>)
> # 1 RPCRT4.dll!NdrOutInit                   +0xd5     (0x77dba095 <RPCRT4.dll+0xa095>)
> # 2 RPCRT4.dll!NdrConformantArrayMarshall   +0x64     (0x77dbb8e5 <RPCRT4.dll+0xb8e5>)
> # 3 RPCRT4.dll!NdrFixedArrayUnmarshall      +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 8 RPCRT4.dll!NdrClientCall2               +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 9 DNSAPI.dll!DnsQueryConfig               +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #10 DNSAPI.dll!DnsQueryConfig               +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #11 DNSAPI.dll!DnsQueryConfig               +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #12 DNSAPI.dll!DnsQueryConfig               +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #13 DNSAPI.dll!DnsQuery_W                   +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals   +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #15 MSWSOCK.dll!WSPStartup                  +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #16 MSWSOCK.dll!WSPStartup                  +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #17 WS2_32.dll!WSARecv                      +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #18 WS2_32.dll!WSARecv                      +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #19 WS2_32.dll!WSARecv                      +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: cmp    %edi 0x14(%ebp)
>
> Potential Error #27: UNINITIALIZED READ: reading register ecx
> # 0 RPCRT4.dll!NdrConformantArrayMarshall   +0x68     (0x77dbb8e8 <RPCRT4.dll+0xb8e8>)
> # 1 RPCRT4.dll!NdrFixedArrayUnmarshall      +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 2 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 3 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrClientCall2               +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 7 DNSAPI.dll!DnsQueryConfig               +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> # 8 DNSAPI.dll!DnsQueryConfig               +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> # 9 DNSAPI.dll!DnsQueryConfig               +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #10 DNSAPI.dll!DnsQueryConfig               +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #11 DNSAPI.dll!DnsQuery_W                   +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #12 MSWSOCK.dll!SvchostPushServiceGlobals   +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #13 MSWSOCK.dll!WSPStartup                  +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #14 MSWSOCK.dll!WSPStartup                  +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #15 WS2_32.dll!WSARecv                      +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #16 WS2_32.dll!WSARecv                      +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #17 WS2_32.dll!WSARecv                      +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> #18 WS2_32.dll!htons                        +0x42     (0x71a72e96 <WS2_32.dll+0x2e96>)
> #19 WS2_32.dll!WSALookupServiceBeginW       +0x14e    (0x71a7373e <WS2_32.dll+0x373e>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: cmp    %ecx %ebx
>
> Potential Error #28: UNINITIALIZED READ: reading register edx
> # 0 RPCRT4.dll!RpcSsDestroyClientContext   +0x1181   (0x77de2a7a <RPCRT4.dll+0x32a7a>)
> # 1 RPCRT4.dll!RpcSsDestroyClientContext   +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 2 RPCRT4.dll!RpcSsDestroyClientContext   +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 3 RPCRT4.dll!NdrFixedArrayUnmarshall     +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 8 RPCRT4.dll!NdrClientCall2              +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 9 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #10 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #13 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #15 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #16 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #17 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #18 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #19 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: test   %edx %edx
>
> Potential Error #29: UNINITIALIZED READ: reading 0x00f3470c-0x00f34710 4 byte(s)
> # 0 RPCRT4.dll!NdrpMemoryIncrement         +0x380    (0x77dba97d <RPCRT4.dll+0xa97d>)
> # 1 RPCRT4.dll!RpcSsDestroyClientContext   +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 2 RPCRT4.dll!RpcSsDestroyClientContext   +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext   +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 4 RPCRT4.dll!NdrFixedArrayUnmarshall     +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 5 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 6 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 7 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 8 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 9 RPCRT4.dll!NdrClientCall2              +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #10 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #14 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #15 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #16 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #17 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #18 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #19 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: cmp    (%ecx) $0x00000000
>
> Potential Error #30: UNINITIALIZED READ: reading register edi
> # 0 RPCRT4.dll!NdrOutInit                      +0x1f6    (0x77dba1b5 <RPCRT4.dll+0xa1b5>)
> # 1 RPCRT4.dll!NdrOutInit                      +0xd5     (0x77dba095 <RPCRT4.dll+0xa095>)
> # 2 RPCRT4.dll!NdrConformantStructUnmarshall   +0x8a     (0x77dbf6e3 <RPCRT4.dll+0xf6e3>)
> # 3 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext       +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 5 RPCRT4.dll!RpcSsDestroyClientContext       +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 6 RPCRT4.dll!RpcSsDestroyClientContext       +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 7 RPCRT4.dll!NdrFixedArrayUnmarshall         +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 8 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 9 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #10 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #11 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #12 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #13 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #14 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #15 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #16 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #17 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #18 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #19 MSWSOCK.dll!WSPStartup                     +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: cmp    %edi 0x14(%ebp)
>
> Potential Error #31: UNINITIALIZED READ: reading register eflags
> # 0 RPCRT4.dll!NdrGetTypeFlags                 +0x368    (0x77db965c <RPCRT4.dll+0x965c>)
> # 1 RPCRT4.dll!NdrConformantStructUnmarshall   +0xa0     (0x77dbf6f9 <RPCRT4.dll+0xf6f9>)
> # 2 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext       +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext       +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 5 RPCRT4.dll!RpcSsDestroyClientContext       +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 6 RPCRT4.dll!NdrFixedArrayUnmarshall         +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 7 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 8 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 9 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #10 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #11 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #12 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #13 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #14 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #15 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #16 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #17 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #18 MSWSOCK.dll!WSPStartup                     +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #19 MSWSOCK.dll!WSPStartup                     +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: jo     $0x77df08fd
>
> Potential Error #32: UNINITIALIZED READ: reading register eax
> # 0 RPCRT4.dll!NdrGetTypeFlags                 +0x378    (0x77db966c <RPCRT4.dll+0x966c>)
> # 1 RPCRT4.dll!NdrConformantStructUnmarshall   +0xa0     (0x77dbf6f9 <RPCRT4.dll+0xf6f9>)
> # 2 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext       +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext       +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 5 RPCRT4.dll!RpcSsDestroyClientContext       +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 6 RPCRT4.dll!NdrFixedArrayUnmarshall         +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 7 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 8 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 9 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #10 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #11 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #12 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #13 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #14 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #15 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #16 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #17 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #18 MSWSOCK.dll!WSPStartup                     +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #19 MSWSOCK.dll!WSPStartup                     +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: cmp    %eax $0x7fffffff
>
> Potential Error #33: UNINITIALIZED READ: reading 0x0012e338-0x0012e33c 4 byte(s)
> # 0 RPCRT4.dll!NdrGetTypeFlags                 +0x3c7    (0x77db96bb <RPCRT4.dll+0x96bb>)
> # 1 RPCRT4.dll!NdrConformantStructUnmarshall   +0xb4     (0x77dbf70d <RPCRT4.dll+0xf70d>)
> # 2 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext       +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext       +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 5 RPCRT4.dll!RpcSsDestroyClientContext       +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 6 RPCRT4.dll!NdrFixedArrayUnmarshall         +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 7 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 8 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 9 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #10 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #11 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #12 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #13 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #14 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #15 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #16 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #17 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #18 MSWSOCK.dll!WSPStartup                     +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #19 MSWSOCK.dll!WSPStartup                     +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: test   0x08(%ebp) %eax
>
> Potential Error #34: UNINITIALIZED READ: reading 0x00f34728-0x00f3472c 4 byte(s)
> # 0 RPCRT4.dll!NdrpMemoryIncrement         +0x380    (0x77dba97d <RPCRT4.dll+0xa97d>)
> # 1 RPCRT4.dll!NdrSimpleStructBufferSize   +0x1be    (0x77dbb0e9 <RPCRT4.dll+0xb0e9>)
> # 2 RPCRT4.dll!NdrConformantStructFree     +0x91     (0x77de3936 <RPCRT4.dll+0x33936>)
> # 3 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 5 RPCRT4.dll!RpcSsDestroyClientContext   +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 6 RPCRT4.dll!RpcSsDestroyClientContext   +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 7 RPCRT4.dll!NdrFixedArrayUnmarshall     +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 8 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 9 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #10 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #11 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #12 RPCRT4.dll!NdrClientCall2              +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #14 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #15 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #16 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #17 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #18 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #19 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: cmp    (%ecx) $0x00000000
>
> Potential Error #35: UNINITIALIZED READ: reading 0x0012e2b0-0x0012e2b4 4 byte(s)
> # 0 RPCRT4.dll!NdrGetTypeFlags                 +0x3c7    (0x77db96bb <RPCRT4.dll+0x96bb>)
> # 1 RPCRT4.dll!NdrConformantStringUnmarshall   +0x6a     (0x77dbf35b <RPCRT4.dll+0xf35b>)
> # 2 RPCRT4.dll!NdrConformantStringUnmarshall   +0x22e    (0x77dbf51f <RPCRT4.dll+0xf51f>)
> # 3 RPCRT4.dll!NdrSimpleStructBufferSize       +0x1be    (0x77dbb0e9 <RPCRT4.dll+0xb0e9>)
> # 4 RPCRT4.dll!NdrConformantStructFree         +0x91     (0x77de3936 <RPCRT4.dll+0x33936>)
> # 5 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 6 RPCRT4.dll!RpcSsDestroyClientContext       +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 7 RPCRT4.dll!RpcSsDestroyClientContext       +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 8 RPCRT4.dll!RpcSsDestroyClientContext       +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 9 RPCRT4.dll!NdrFixedArrayUnmarshall         +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> #10 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #11 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #12 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #13 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #14 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #15 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #16 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #17 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #18 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #19 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: test   0x08(%ebp) %eax
>
> Potential Error #36: UNINITIALIZED READ: reading register ecx
> # 0 RPCRT4.dll!NdrConformantStringUnmarshall   +0x124    (0x77dbf414 <RPCRT4.dll+0xf414>)
> # 1 RPCRT4.dll!NdrConformantStringUnmarshall   +0xb9     (0x77dbf3aa <RPCRT4.dll+0xf3aa>)
> # 2 RPCRT4.dll!NdrConformantStringUnmarshall   +0x22e    (0x77dbf51f <RPCRT4.dll+0xf51f>)
> # 3 RPCRT4.dll!NdrSimpleStructBufferSize       +0x1be    (0x77dbb0e9 <RPCRT4.dll+0xb0e9>)
> # 4 RPCRT4.dll!NdrConformantStructFree         +0x91     (0x77de3936 <RPCRT4.dll+0x33936>)
> # 5 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 6 RPCRT4.dll!RpcSsDestroyClientContext       +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 7 RPCRT4.dll!RpcSsDestroyClientContext       +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 8 RPCRT4.dll!RpcSsDestroyClientContext       +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 9 RPCRT4.dll!NdrFixedArrayUnmarshall         +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> #10 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #11 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #12 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #13 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #14 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #15 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #16 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #17 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #18 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #19 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: test   %ecx %ecx
>
> Potential Error #37: UNINITIALIZED READ: reading register esi
> # 0 RPCRT4.dll!NdrConformantStringUnmarshall   +0x132    (0x77dbf422 <RPCRT4.dll+0xf422>)
> # 1 RPCRT4.dll!NdrConformantStringUnmarshall   +0xb9     (0x77dbf3aa <RPCRT4.dll+0xf3aa>)
> # 2 RPCRT4.dll!NdrConformantStringUnmarshall   +0x22e    (0x77dbf51f <RPCRT4.dll+0xf51f>)
> # 3 RPCRT4.dll!NdrSimpleStructBufferSize       +0x1be    (0x77dbb0e9 <RPCRT4.dll+0xb0e9>)
> # 4 RPCRT4.dll!NdrConformantStructFree         +0x91     (0x77de3936 <RPCRT4.dll+0x33936>)
> # 5 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 6 RPCRT4.dll!RpcSsDestroyClientContext       +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 7 RPCRT4.dll!RpcSsDestroyClientContext       +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 8 RPCRT4.dll!RpcSsDestroyClientContext       +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 9 RPCRT4.dll!NdrFixedArrayUnmarshall         +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> #10 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #11 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #12 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #13 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #14 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #15 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #16 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #17 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #18 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #19 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: test   %esi %esi
>
> Potential Error #38: UNINITIALIZED READ: reading register ecx
> # 0 RPCRT4.dll!NdrConformantStringUnmarshall   +0x13d    (0x77dbf42d <RPCRT4.dll+0xf42d>)
> # 1 RPCRT4.dll!NdrConformantStringUnmarshall   +0xb9     (0x77dbf3aa <RPCRT4.dll+0xf3aa>)
> # 2 RPCRT4.dll!NdrConformantStringUnmarshall   +0x22e    (0x77dbf51f <RPCRT4.dll+0xf51f>)
> # 3 RPCRT4.dll!NdrSimpleStructBufferSize       +0x1be    (0x77dbb0e9 <RPCRT4.dll+0xb0e9>)
> # 4 RPCRT4.dll!NdrConformantStructFree         +0x91     (0x77de3936 <RPCRT4.dll+0x33936>)
> # 5 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 6 RPCRT4.dll!RpcSsDestroyClientContext       +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 7 RPCRT4.dll!RpcSsDestroyClientContext       +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 8 RPCRT4.dll!RpcSsDestroyClientContext       +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 9 RPCRT4.dll!NdrFixedArrayUnmarshall         +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> #10 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #11 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #12 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #13 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #14 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #15 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #16 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #17 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #18 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #19 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: cmp    %ecx %esi
>
> Potential Error #39: UNINITIALIZED READ: reading register dl
> # 0 RPCRT4.dll!NdrConformantStringUnmarshall   +0x19b    (0x77dbf48b <RPCRT4.dll+0xf48b>)
> # 1 RPCRT4.dll!NdrConformantStringUnmarshall   +0xb9     (0x77dbf3aa <RPCRT4.dll+0xf3aa>)
> # 2 RPCRT4.dll!NdrConformantStringUnmarshall   +0x22e    (0x77dbf51f <RPCRT4.dll+0xf51f>)
> # 3 RPCRT4.dll!NdrSimpleStructBufferSize       +0x1be    (0x77dbb0e9 <RPCRT4.dll+0xb0e9>)
> # 4 RPCRT4.dll!NdrConformantStructFree         +0x91     (0x77de3936 <RPCRT4.dll+0x33936>)
> # 5 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 6 RPCRT4.dll!RpcSsDestroyClientContext       +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 7 RPCRT4.dll!RpcSsDestroyClientContext       +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 8 RPCRT4.dll!RpcSsDestroyClientContext       +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 9 RPCRT4.dll!NdrFixedArrayUnmarshall         +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> #10 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #11 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #12 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #13 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #14 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #15 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #16 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #17 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #18 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #19 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: test   %dl %dl
>
> Potential Error #40: UNINITIALIZED READ: reading register ecx
> # 0 RPCRT4.dll!NdrpMemoryIncrement         +0x359    (0x77dba956 <RPCRT4.dll+0xa956>)
> # 1 RPCRT4.dll!NdrSimpleStructBufferSize   +0x1be    (0x77dbb0e9 <RPCRT4.dll+0xb0e9>)
> # 2 RPCRT4.dll!NdrConformantStructFree     +0x91     (0x77de3936 <RPCRT4.dll+0x33936>)
> # 3 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 5 RPCRT4.dll!RpcSsDestroyClientContext   +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 6 RPCRT4.dll!RpcSsDestroyClientContext   +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 7 RPCRT4.dll!NdrFixedArrayUnmarshall     +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 8 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 9 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #10 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #11 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #12 RPCRT4.dll!NdrClientCall2              +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #14 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #15 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #16 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #17 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #18 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #19 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> Note: @0:00:01.657 in thread 4076
> Note: instruction: cmp    %ecx 0x0c(%esi)
>
> Potential Error #41: UNINITIALIZED READ: reading register edi
> # 0 RPCRT4.dll!NdrOutInit                      +0x1f6    (0x77dba1b5 <RPCRT4.dll+0xa1b5>)
> # 1 RPCRT4.dll!NdrOutInit                      +0xd5     (0x77dba095 <RPCRT4.dll+0xa095>)
> # 2 RPCRT4.dll!NdrConformantStructUnmarshall   +0x8a     (0x77dbf6e3 <RPCRT4.dll+0xf6e3>)
> # 3 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 4 RPCRT4.dll!NdrSimpleStructBufferSize       +0x1be    (0x77dbb0e9 <RPCRT4.dll+0xb0e9>)
> # 5 RPCRT4.dll!NdrConformantStructFree         +0x91     (0x77de3936 <RPCRT4.dll+0x33936>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!RpcSsDestroyClientContext       +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 8 RPCRT4.dll!RpcSsDestroyClientContext       +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 9 RPCRT4.dll!RpcSsDestroyClientContext       +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> #10 RPCRT4.dll!NdrFixedArrayUnmarshall         +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> #11 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #12 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #13 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #14 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #15 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #16 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #17 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #18 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #19 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> Note: @0:00:01.672 in thread 4076
> Note: instruction: cmp    %edi 0x14(%ebp)
>
> Potential Error #42: UNINITIALIZED READ: reading register eflags
> # 0 RPCRT4.dll!NdrGetTypeFlags                 +0x368    (0x77db965c <RPCRT4.dll+0x965c>)
> # 1 RPCRT4.dll!NdrConformantStructUnmarshall   +0xa0     (0x77dbf6f9 <RPCRT4.dll+0xf6f9>)
> # 2 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 3 RPCRT4.dll!NdrSimpleStructBufferSize       +0x1be    (0x77dbb0e9 <RPCRT4.dll+0xb0e9>)
> # 4 RPCRT4.dll!NdrConformantStructFree         +0x91     (0x77de3936 <RPCRT4.dll+0x33936>)
> # 5 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 6 RPCRT4.dll!RpcSsDestroyClientContext       +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 7 RPCRT4.dll!RpcSsDestroyClientContext       +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 8 RPCRT4.dll!RpcSsDestroyClientContext       +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 9 RPCRT4.dll!NdrFixedArrayUnmarshall         +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> #10 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #11 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #12 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #13 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #14 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #15 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #16 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #17 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #18 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #19 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> Note: @0:00:01.672 in thread 4076
> Note: instruction: jo     $0x77df08fd
>
> Potential Error #43: UNINITIALIZED READ: reading register eax
> # 0 RPCRT4.dll!NdrGetTypeFlags                 +0x378    (0x77db966c <RPCRT4.dll+0x966c>)
> # 1 RPCRT4.dll!NdrConformantStructUnmarshall   +0xa0     (0x77dbf6f9 <RPCRT4.dll+0xf6f9>)
> # 2 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 3 RPCRT4.dll!NdrSimpleStructBufferSize       +0x1be    (0x77dbb0e9 <RPCRT4.dll+0xb0e9>)
> # 4 RPCRT4.dll!NdrConformantStructFree         +0x91     (0x77de3936 <RPCRT4.dll+0x33936>)
> # 5 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 6 RPCRT4.dll!RpcSsDestroyClientContext       +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 7 RPCRT4.dll!RpcSsDestroyClientContext       +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 8 RPCRT4.dll!RpcSsDestroyClientContext       +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 9 RPCRT4.dll!NdrFixedArrayUnmarshall         +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> #10 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #11 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #12 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #13 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #14 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #15 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #16 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #17 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #18 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #19 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> Note: @0:00:01.672 in thread 4076
> Note: instruction: cmp    %eax $0x7fffffff
>
> Potential Error #44: UNINITIALIZED READ: reading 0x0012e2a8-0x0012e2ac 4 byte(s)
> # 0 RPCRT4.dll!NdrGetTypeFlags                 +0x3c7    (0x77db96bb <RPCRT4.dll+0x96bb>)
> # 1 RPCRT4.dll!NdrConformantStructUnmarshall   +0xb4     (0x77dbf70d <RPCRT4.dll+0xf70d>)
> # 2 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 3 RPCRT4.dll!NdrSimpleStructBufferSize       +0x1be    (0x77dbb0e9 <RPCRT4.dll+0xb0e9>)
> # 4 RPCRT4.dll!NdrConformantStructFree         +0x91     (0x77de3936 <RPCRT4.dll+0x33936>)
> # 5 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 6 RPCRT4.dll!RpcSsDestroyClientContext       +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 7 RPCRT4.dll!RpcSsDestroyClientContext       +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 8 RPCRT4.dll!RpcSsDestroyClientContext       +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 9 RPCRT4.dll!NdrFixedArrayUnmarshall         +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> #10 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #11 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #12 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #13 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #14 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #15 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #16 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #17 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #18 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #19 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> Note: @0:00:01.672 in thread 4076
> Note: instruction: test   0x08(%ebp) %eax
>
> Potential Error #45: UNINITIALIZED READ: reading register cl
> # 0 DNSAPI.dll!DnsApiFree                  +0x192    (0x76f038f3 <DNSAPI.dll+0x38f3>)
> # 1 DNSAPI.dll!NetInfo_Copy                +0x4a     (0x76f03a60 <DNSAPI.dll+0x3a60>)
> # 2 DNSAPI.dll!DnsQueryConfig              +0x44f    (0x76f07ec0 <DNSAPI.dll+0x7ec0>)
> # 3 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> # 4 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> # 5 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> # 6 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> # 7 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> # 8 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> # 9 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #10 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> #11 WS2_32.dll!htons                       +0x42     (0x71a72e96 <WS2_32.dll+0x2e96>)
> #12 WS2_32.dll!WSALookupServiceBeginW      +0x14e    (0x71a7373e <WS2_32.dll+0x373e>)
> #13 WS2_32.dll!WSALookupServiceBeginW      +0x83     (0x71a73673 <WS2_32.dll+0x3673>)
> #14 WS2_32.dll!WSALookupServiceNextA       +0x676    (0x71a76104 <WS2_32.dll+0x6104>)
> #15 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #16 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #17 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> #18 WS2_32.dll!getaddrinfo                 +0x5a     (0x71a72aca <WS2_32.dll+0x2aca>)
> #19 LIBPQ.dll!pqsignal                     +0x360    (0x10017b61 <LIBPQ.dll+0x17b61>)
> Note: @0:00:01.672 in thread 4076
> Note: instruction: test   %cl %cl
>
> Potential Error #46: UNINITIALIZED READ: reading 0x00f348ec-0x00f348f0 4 byte(s)
> # 0 DNSAPI.dll!NetInfo_Copy                +0x59     (0x76f03a6e <DNSAPI.dll+0x3a6e>)
> # 1 DNSAPI.dll!DnsQueryConfig              +0x4b9    (0x76f07f2a <DNSAPI.dll+0x7f2a>)
> # 2 DNSAPI.dll!DnsQueryConfig              +0x4b9    (0x76f07f2a <DNSAPI.dll+0x7f2a>)
> # 3 DNSAPI.dll!DnsQueryConfig              +0x44f    (0x76f07ec0 <DNSAPI.dll+0x7ec0>)
> # 4 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> # 5 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> # 6 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> # 7 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> # 8 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> # 9 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #10 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #11 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> #12 WS2_32.dll!htons                       +0x42     (0x71a72e96 <WS2_32.dll+0x2e96>)
> #13 WS2_32.dll!WSALookupServiceBeginW      +0x14e    (0x71a7373e <WS2_32.dll+0x373e>)
> #14 WS2_32.dll!WSALookupServiceBeginW      +0x83     (0x71a73673 <WS2_32.dll+0x3673>)
> #15 WS2_32.dll!WSALookupServiceNextA       +0x676    (0x71a76104 <WS2_32.dll+0x6104>)
> #16 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #17 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #18 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> #19 WS2_32.dll!getaddrinfo                 +0x5a     (0x71a72aca <WS2_32.dll+0x2aca>)
> Note: @0:00:01.672 in thread 4076
> Note: instruction: cmp    0x1c(%ebx) %edi
>
> Potential Error #47: UNINITIALIZED READ: reading register ecx
> # 0 DNSAPI.dll!NetInfo_Copy                +0xdc     (0x76f03af1 <DNSAPI.dll+0x3af1>)
> # 1 DNSAPI.dll!NetInfo_Copy                +0x73     (0x76f03a89 <DNSAPI.dll+0x3a89>)
> # 2 DNSAPI.dll!DnsQueryConfig              +0x44f    (0x76f07ec0 <DNSAPI.dll+0x7ec0>)
> # 3 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> # 4 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> # 5 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> # 6 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> # 7 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> # 8 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> # 9 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #10 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> #11 WS2_32.dll!htons                       +0x42     (0x71a72e96 <WS2_32.dll+0x2e96>)
> #12 WS2_32.dll!WSALookupServiceBeginW      +0x14e    (0x71a7373e <WS2_32.dll+0x373e>)
> #13 WS2_32.dll!WSALookupServiceBeginW      +0x83     (0x71a73673 <WS2_32.dll+0x3673>)
> #14 WS2_32.dll!WSALookupServiceNextA       +0x676    (0x71a76104 <WS2_32.dll+0x6104>)
> #15 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #16 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #17 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> #18 WS2_32.dll!getaddrinfo                 +0x5a     (0x71a72aca <WS2_32.dll+0x2aca>)
> #19 LIBPQ.dll!pqsignal                     +0x360    (0x10017b61 <LIBPQ.dll+0x17b61>)
> Note: @0:00:01.672 in thread 4076
> Note: instruction: rep movs %ds:(%esi) %esi %edi %ecx -> %es:(%edi) %esi %edi %ecx
>
> Potential Error #48: UNINITIALIZED READ: reading register cl
> # 0 DNSAPI.dll!DnsApiFree                  +0x192    (0x76f038f3 <DNSAPI.dll+0x38f3>)
> # 1 DNSAPI.dll!NetInfo_Copy                +0xf3     (0x76f03b09 <DNSAPI.dll+0x3b09>)
> # 2 DNSAPI.dll!NetInfo_Copy                +0x73     (0x76f03a89 <DNSAPI.dll+0x3a89>)
> # 3 DNSAPI.dll!DnsQueryConfig              +0x44f    (0x76f07ec0 <DNSAPI.dll+0x7ec0>)
> # 4 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> # 5 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> # 6 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> # 7 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> # 8 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> # 9 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #10 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #11 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> #12 WS2_32.dll!htons                       +0x42     (0x71a72e96 <WS2_32.dll+0x2e96>)
> #13 WS2_32.dll!WSALookupServiceBeginW      +0x14e    (0x71a7373e <WS2_32.dll+0x373e>)
> #14 WS2_32.dll!WSALookupServiceBeginW      +0x83     (0x71a73673 <WS2_32.dll+0x3673>)
> #15 WS2_32.dll!WSALookupServiceNextA       +0x676    (0x71a76104 <WS2_32.dll+0x6104>)
> #16 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #17 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #18 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> #19 WS2_32.dll!getaddrinfo                 +0x5a     (0x71a72aca <WS2_32.dll+0x2aca>)
> Note: @0:00:01.688 in thread 4076
> Note: instruction: test   %cl %cl
>
> Potential Error #49: UNINITIALIZED READ: reading register ecx
> # 0 DNSAPI.dll!NetInfo_Copy                +0x181    (0x76f03b96 <DNSAPI.dll+0x3b96>)
> # 1 DNSAPI.dll!NetInfo_Copy                +0x13e    (0x76f03b54 <DNSAPI.dll+0x3b54>)
> # 2 DNSAPI.dll!NetInfo_Copy                +0x10d    (0x76f03b23 <DNSAPI.dll+0x3b23>)
> # 3 DNSAPI.dll!NetInfo_Copy                +0x73     (0x76f03a89 <DNSAPI.dll+0x3a89>)
> # 4 DNSAPI.dll!DnsQueryConfig              +0x44f    (0x76f07ec0 <DNSAPI.dll+0x7ec0>)
> # 5 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> # 6 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> # 7 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> # 8 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> # 9 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #10 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #11 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #12 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> #13 WS2_32.dll!htons                       +0x42     (0x71a72e96 <WS2_32.dll+0x2e96>)
> #14 WS2_32.dll!WSALookupServiceBeginW      +0x14e    (0x71a7373e <WS2_32.dll+0x373e>)
> #15 WS2_32.dll!WSALookupServiceBeginW      +0x83     (0x71a73673 <WS2_32.dll+0x3673>)
> #16 WS2_32.dll!WSALookupServiceNextA       +0x676    (0x71a76104 <WS2_32.dll+0x6104>)
> #17 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #18 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #19 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> Note: @0:00:01.688 in thread 4076
> Note: instruction: rep movs %ds:(%esi) %esi %edi %ecx -> %es:(%edi) %esi %edi %ecx
>
> Potential Error #50: UNINITIALIZED READ: reading register ecx
> # 0 DNSAPI.dll!NetInfo_Copy                +0x181    (0x76f03b96 <DNSAPI.dll+0x3b96>)
> # 1 DNSAPI.dll!NetInfo_Copy                +0x13e    (0x76f03b54 <DNSAPI.dll+0x3b54>)
> # 2 DNSAPI.dll!NetInfo_Copy                +0x118    (0x76f03b2e <DNSAPI.dll+0x3b2e>)
> # 3 DNSAPI.dll!NetInfo_Copy                +0x73     (0x76f03a89 <DNSAPI.dll+0x3a89>)
> # 4 DNSAPI.dll!DnsQueryConfig              +0x44f    (0x76f07ec0 <DNSAPI.dll+0x7ec0>)
> # 5 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> # 6 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> # 7 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> # 8 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> # 9 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #10 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #11 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #12 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> #13 WS2_32.dll!htons                       +0x42     (0x71a72e96 <WS2_32.dll+0x2e96>)
> #14 WS2_32.dll!WSALookupServiceBeginW      +0x14e    (0x71a7373e <WS2_32.dll+0x373e>)
> #15 WS2_32.dll!WSALookupServiceBeginW      +0x83     (0x71a73673 <WS2_32.dll+0x3673>)
> #16 WS2_32.dll!WSALookupServiceNextA       +0x676    (0x71a76104 <WS2_32.dll+0x6104>)
> #17 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #18 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #19 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> Note: @0:00:01.688 in thread 4076
> Note: instruction: rep movs %ds:(%esi) %esi %edi %ecx -> %es:(%edi) %esi %edi %ecx
>
> Potential Error #51: UNINITIALIZED READ: reading 0x00f34988-0x00f3498c 4 byte(s)
> # 0 DNSAPI.dll!DnsQueryConfig              +0x2b5    (0x76f07d25 <DNSAPI.dll+0x7d25>)
> # 1 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> # 2 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> # 3 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> # 4 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> # 5 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> # 6 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> # 7 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> # 8 WS2_32.dll!htons                       +0x42     (0x71a72e96 <WS2_32.dll+0x2e96>)
> # 9 WS2_32.dll!WSALookupServiceBeginW      +0x14e    (0x71a7373e <WS2_32.dll+0x373e>)
> #10 WS2_32.dll!WSALookupServiceBeginW      +0x83     (0x71a73673 <WS2_32.dll+0x3673>)
> #11 WS2_32.dll!WSALookupServiceNextA       +0x676    (0x71a76104 <WS2_32.dll+0x6104>)
> #12 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #13 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #14 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> #15 WS2_32.dll!getaddrinfo                 +0x5a     (0x71a72aca <WS2_32.dll+0x2aca>)
> #16 LIBPQ.dll!pqsignal                     +0x360    (0x10017b61 <LIBPQ.dll+0x17b61>)
> #17 LIBPQ.dll!PQpingParams                 +0xe9b    (0x10006bfc <LIBPQ.dll+0x6bfc>)
> #18 LIBPQ.dll!PQconnectdb                  +0x35     (0x10005096 <LIBPQ.dll+0x5096>)
> #19 main                                    [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:01.688 in thread 4076
> Note: instruction: cmp    0x28(%esi) %ebx
>
> Potential Error #52: UNINITIALIZED READ: reading 0x76f211bc-0x76f211c0 4 byte(s)
> # 0 DNSAPI.dll!Dns_InitQueryTimeouts       +0x5a7    (0x76f076e3 <DNSAPI.dll+0x76e3>)
> # 1 DNSAPI.dll!DnsQueryConfig              +0x401    (0x76f07e72 <DNSAPI.dll+0x7e72>)
> # 2 DNSAPI.dll!DnsQueryConfig              +0x3df    (0x76f07e50 <DNSAPI.dll+0x7e50>)
> # 3 DNSAPI.dll!DnsQueryConfigAllocEx       +0x3c     (0x76f07a5a <DNSAPI.dll+0x7a5a>)
> # 4 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f66   (0x71a1b698 <MSWSOCK.dll+0xb698>)
> # 5 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> # 6 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> # 7 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> # 8 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> # 9 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> #10 WS2_32.dll!htons                       +0x42     (0x71a72e96 <WS2_32.dll+0x2e96>)
> #11 WS2_32.dll!WSALookupServiceBeginW      +0x14e    (0x71a7373e <WS2_32.dll+0x373e>)
> #12 WS2_32.dll!WSALookupServiceBeginW      +0x83     (0x71a73673 <WS2_32.dll+0x3673>)
> #13 WS2_32.dll!WSALookupServiceNextA       +0x676    (0x71a76104 <WS2_32.dll+0x6104>)
> #14 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #15 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #16 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> #17 WS2_32.dll!getaddrinfo                 +0x5a     (0x71a72aca <WS2_32.dll+0x2aca>)
> #18 LIBPQ.dll!pqsignal                     +0x360    (0x10017b61 <LIBPQ.dll+0x17b61>)
> #19 LIBPQ.dll!PQpingParams                 +0xe9b    (0x10006bfc <LIBPQ.dll+0x6bfc>)
> Note: @0:00:01.704 in thread 4076
> Note: instruction: cmp    0x76f211bc %ebx
>
> Potential Error #53: UNINITIALIZED READ: reading register ebx
> # 0 RPCRT4.dll!UuidCreate                  +0x186    (0x77db63da <RPCRT4.dll+0x63da>)
> # 1 RPCRT4.dll!UuidCreate                  +0x106    (0x77db635b <RPCRT4.dll+0x635b>)
> # 2 RPCRT4.dll!UuidCreate                  +0xc4     (0x77db6319 <RPCRT4.dll+0x6319>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext   +0x6dd    (0x77de1fd7 <RPCRT4.dll+0x31fd7>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x5d9    (0x77de1ed3 <RPCRT4.dll+0x31ed3>)
> # 5 RPCRT4.dll!I_RpcBindingIsClientLocal   +0x35b    (0x77dc7718 <RPCRT4.dll+0x17718>)
> # 6 RPCRT4.dll!NdrConformantArrayFree      +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 7 RPCRT4.dll!I_RpcGetBufferWithObject    +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> # 8 RPCRT4.dll!I_RpcGetBuffer              +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> # 9 RPCRT4.dll!NdrGetBuffer                +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #10 RPCRT4.dll!NdrClientCall2              +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x233    (0x76f07ca4 <DNSAPI.dll+0x7ca4>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x1f4    (0x76f07c65 <DNSAPI.dll+0x7c65>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x16e    (0x76f07bdf <DNSAPI.dll+0x7bdf>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2e8e   (0x71a1b5c0 <MSWSOCK.dll+0xb5c0>)
> #15 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #16 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #17 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #18 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #19 WS2_32.dll!WSALookupServiceNextW       +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> Note: @0:00:01.782 in thread 4076
> Note: instruction: mov    (%ebx,%esi) -> %al
>
> Potential Error #54: UNINITIALIZED READ: reading register ebx
> # 0 RPCRT4.dll!UuidCreate                  +0x19a    (0x77db63ee <RPCRT4.dll+0x63ee>)
> # 1 RPCRT4.dll!UuidCreate                  +0x106    (0x77db635b <RPCRT4.dll+0x635b>)
> # 2 RPCRT4.dll!UuidCreate                  +0xc4     (0x77db6319 <RPCRT4.dll+0x6319>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext   +0x6dd    (0x77de1fd7 <RPCRT4.dll+0x31fd7>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x5d9    (0x77de1ed3 <RPCRT4.dll+0x31ed3>)
> # 5 RPCRT4.dll!I_RpcBindingIsClientLocal   +0x35b    (0x77dc7718 <RPCRT4.dll+0x17718>)
> # 6 RPCRT4.dll!NdrConformantArrayFree      +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 7 RPCRT4.dll!I_RpcGetBufferWithObject    +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> # 8 RPCRT4.dll!I_RpcGetBuffer              +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> # 9 RPCRT4.dll!NdrGetBuffer                +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #10 RPCRT4.dll!NdrClientCall2              +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x233    (0x76f07ca4 <DNSAPI.dll+0x7ca4>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x1f4    (0x76f07c65 <DNSAPI.dll+0x7c65>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x16e    (0x76f07bdf <DNSAPI.dll+0x7bdf>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2e8e   (0x71a1b5c0 <MSWSOCK.dll+0xb5c0>)
> #15 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #16 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #17 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #18 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #19 WS2_32.dll!WSALookupServiceNextW       +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> Note: @0:00:01.782 in thread 4076
> Note: instruction: mov    (%ebx,%esi) -> %al
>
> Potential Error #55: UNINITIALIZED READ: reading register ebx
> # 0 RPCRT4.dll!UuidCreate                  +0x1af    (0x77db6403 <RPCRT4.dll+0x6403>)
> # 1 RPCRT4.dll!UuidCreate                  +0x106    (0x77db635b <RPCRT4.dll+0x635b>)
> # 2 RPCRT4.dll!UuidCreate                  +0xc4     (0x77db6319 <RPCRT4.dll+0x6319>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext   +0x6dd    (0x77de1fd7 <RPCRT4.dll+0x31fd7>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x5d9    (0x77de1ed3 <RPCRT4.dll+0x31ed3>)
> # 5 RPCRT4.dll!I_RpcBindingIsClientLocal   +0x35b    (0x77dc7718 <RPCRT4.dll+0x17718>)
> # 6 RPCRT4.dll!NdrConformantArrayFree      +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 7 RPCRT4.dll!I_RpcGetBufferWithObject    +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> # 8 RPCRT4.dll!I_RpcGetBuffer              +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> # 9 RPCRT4.dll!NdrGetBuffer                +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #10 RPCRT4.dll!NdrClientCall2              +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x233    (0x76f07ca4 <DNSAPI.dll+0x7ca4>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x1f4    (0x76f07c65 <DNSAPI.dll+0x7c65>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x16e    (0x76f07bdf <DNSAPI.dll+0x7bdf>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2e8e   (0x71a1b5c0 <MSWSOCK.dll+0xb5c0>)
> #15 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #16 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #17 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #18 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #19 WS2_32.dll!WSALookupServiceNextW       +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> Note: @0:00:01.782 in thread 4076
> Note: instruction: mov    (%ebx,%esi) -> %al
>
> Potential Error #56: UNINITIALIZED READ: reading register ebx
> # 0 RPCRT4.dll!UuidCreate                  +0x1c4    (0x77db6418 <RPCRT4.dll+0x6418>)
> # 1 RPCRT4.dll!UuidCreate                  +0x106    (0x77db635b <RPCRT4.dll+0x635b>)
> # 2 RPCRT4.dll!UuidCreate                  +0xc4     (0x77db6319 <RPCRT4.dll+0x6319>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext   +0x6dd    (0x77de1fd7 <RPCRT4.dll+0x31fd7>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x5d9    (0x77de1ed3 <RPCRT4.dll+0x31ed3>)
> # 5 RPCRT4.dll!I_RpcBindingIsClientLocal   +0x35b    (0x77dc7718 <RPCRT4.dll+0x17718>)
> # 6 RPCRT4.dll!NdrConformantArrayFree      +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 7 RPCRT4.dll!I_RpcGetBufferWithObject    +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> # 8 RPCRT4.dll!I_RpcGetBuffer              +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> # 9 RPCRT4.dll!NdrGetBuffer                +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #10 RPCRT4.dll!NdrClientCall2              +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x233    (0x76f07ca4 <DNSAPI.dll+0x7ca4>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x1f4    (0x76f07c65 <DNSAPI.dll+0x7c65>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x16e    (0x76f07bdf <DNSAPI.dll+0x7bdf>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2e8e   (0x71a1b5c0 <MSWSOCK.dll+0xb5c0>)
> #15 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #16 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #17 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #18 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #19 WS2_32.dll!WSALookupServiceNextW       +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> Note: @0:00:01.782 in thread 4076
> Note: instruction: mov    (%ebx,%esi) -> %al
>
> Potential Error #57: UNINITIALIZED READ: reading 0x0012e260-0x0012e27c 28 byte(s) within 0x0012e258-0x0012e314
> # 0 system call NtConnectPort parameter #6
> # 1 ntdll.dll!ZwConnectPort                             +0xb      (0x7c90d03c <ntdll.dll+0xd03c>)
> # 2 RPCRT4.dll!RpcSsDestroyClientContext                +0x899    (0x77de2193 <RPCRT4.dll+0x32193>)
> # 3 RPCRT4.dll!NdrTypeFlags                             +0x36f    (0x77db60a8 <RPCRT4.dll+0x60a8>)
> # 4 RPCRT4.dll!NdrTypeFlags                             +0x37b    (0x77db60b4 <RPCRT4.dll+0x60b4>)
> # 5 RPCRT4.dll!RpcSsDestroyClientContext                +0xf5     (0x77de19ef <RPCRT4.dll+0x319ef>)
> # 6 RPCRT4.dll!RpcSsDestroyClientContext                +0x75     (0x77de196f <RPCRT4.dll+0x3196f>)
> # 7 RPCRT4.dll!NdrConformantArrayFree                   +0x600    (0x77dbbff7 <RPCRT4.dll+0xbff7>)
> # 8 RPCRT4.dll!NdrConformantArrayFree                   +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 9 RPCRT4.dll!I_RpcGetBufferWithObject                 +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> #10 RPCRT4.dll!I_RpcGetBuffer                           +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> #11 RPCRT4.dll!NdrGetBuffer                             +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #12 RPCRT4.dll!NdrClientCall2                           +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #13 DNSAPI.dll!DnsQueryConfig                           +0x233    (0x76f07ca4 <DNSAPI.dll+0x7ca4>)
> #14 DNSAPI.dll!DnsQueryConfig                           +0x1f4    (0x76f07c65 <DNSAPI.dll+0x7c65>)
> #15 DNSAPI.dll!DnsQueryConfig                           +0x16e    (0x76f07bdf <DNSAPI.dll+0x7bdf>)
> #16 MSWSOCK.dll!SvchostPushServiceGlobals               +0x2e8e   (0x71a1b5c0 <MSWSOCK.dll+0xb5c0>)
> #17 MSWSOCK.dll!dn_expand                               +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #18 WS2_32.dll!WSALookupServiceNextW                    +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #19 WS2_32.dll!WSALookupServiceNextW                    +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> Note: @0:00:01.782 in thread 4076
>
> Potential Error #58: UNINITIALIZED READ: reading 0x76f211c4-0x76f211c8 4 byte(s)
> # 0 DNSAPI.dll!DnsQueryConfig              +0x369    (0x76f07dd9 <DNSAPI.dll+0x7dd9>)
> # 1 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> # 2 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> # 3 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> # 4 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> # 5 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> # 6 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> # 7 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> # 8 WS2_32.dll!WSALookupServiceNextW       +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> # 9 WS2_32.dll!WSALookupServiceNextA       +0x6a8    (0x71a76136 <WS2_32.dll+0x6136>)
> #10 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #11 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #12 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> #13 WS2_32.dll!getaddrinfo                 +0x5a     (0x71a72aca <WS2_32.dll+0x2aca>)
> #14 LIBPQ.dll!pqsignal                     +0x360    (0x10017b61 <LIBPQ.dll+0x17b61>)
> #15 LIBPQ.dll!PQpingParams                 +0xe9b    (0x10006bfc <LIBPQ.dll+0x6bfc>)
> #16 LIBPQ.dll!PQconnectdb                  +0x35     (0x10005096 <LIBPQ.dll+0x5096>)
> #17 main                                    [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:01.782 in thread 4076
> Note: instruction: cmp    0x76f211c4 %edi
>
> Potential Error #59: UNINITIALIZED READ: reading register edx
> # 0 DNSAPI.dll!DnsQueryConfig              +0x395    (0x76f07e05 <DNSAPI.dll+0x7e05>)
> # 1 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> # 2 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> # 3 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> # 4 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> # 5 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> # 6 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> # 7 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> # 8 WS2_32.dll!WSALookupServiceNextW       +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> # 9 WS2_32.dll!WSALookupServiceNextA       +0x6a8    (0x71a76136 <WS2_32.dll+0x6136>)
> #10 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #11 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #12 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> #13 WS2_32.dll!getaddrinfo                 +0x5a     (0x71a72aca <WS2_32.dll+0x2aca>)
> #14 LIBPQ.dll!pqsignal                     +0x360    (0x10017b61 <LIBPQ.dll+0x17b61>)
> #15 LIBPQ.dll!PQpingParams                 +0xe9b    (0x10006bfc <LIBPQ.dll+0x6bfc>)
> #16 LIBPQ.dll!PQconnectdb                  +0x35     (0x10005096 <LIBPQ.dll+0x5096>)
> #17 main                                    [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:01.782 in thread 4076
> Note: instruction: cmp    %edx %eax
>
> Potential Error #60: UNINITIALIZED READ: reading register ebx
> # 0 RPCRT4.dll!UuidCreate                  +0x186    (0x77db63da <RPCRT4.dll+0x63da>)
> # 1 RPCRT4.dll!UuidCreate                  +0x106    (0x77db635b <RPCRT4.dll+0x635b>)
> # 2 RPCRT4.dll!UuidCreate                  +0xc4     (0x77db6319 <RPCRT4.dll+0x6319>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext   +0x6dd    (0x77de1fd7 <RPCRT4.dll+0x31fd7>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x5d9    (0x77de1ed3 <RPCRT4.dll+0x31ed3>)
> # 5 RPCRT4.dll!I_RpcBindingIsClientLocal   +0x35b    (0x77dc7718 <RPCRT4.dll+0x17718>)
> # 6 RPCRT4.dll!NdrConformantArrayFree      +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 7 RPCRT4.dll!I_RpcGetBufferWithObject    +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> # 8 RPCRT4.dll!I_RpcGetBuffer              +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> # 9 RPCRT4.dll!NdrGetBuffer                +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #10 RPCRT4.dll!NdrClientCall2              +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #14 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #15 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #16 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #17 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #18 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #19 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> Note: @0:00:01.782 in thread 4076
> Note: instruction: mov    (%ebx,%esi) -> %al
>
> Potential Error #61: UNINITIALIZED READ: reading register ebx
> # 0 RPCRT4.dll!UuidCreate                  +0x19a    (0x77db63ee <RPCRT4.dll+0x63ee>)
> # 1 RPCRT4.dll!UuidCreate                  +0x106    (0x77db635b <RPCRT4.dll+0x635b>)
> # 2 RPCRT4.dll!UuidCreate                  +0xc4     (0x77db6319 <RPCRT4.dll+0x6319>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext   +0x6dd    (0x77de1fd7 <RPCRT4.dll+0x31fd7>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x5d9    (0x77de1ed3 <RPCRT4.dll+0x31ed3>)
> # 5 RPCRT4.dll!I_RpcBindingIsClientLocal   +0x35b    (0x77dc7718 <RPCRT4.dll+0x17718>)
> # 6 RPCRT4.dll!NdrConformantArrayFree      +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 7 RPCRT4.dll!I_RpcGetBufferWithObject    +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> # 8 RPCRT4.dll!I_RpcGetBuffer              +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> # 9 RPCRT4.dll!NdrGetBuffer                +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #10 RPCRT4.dll!NdrClientCall2              +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #14 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #15 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #16 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #17 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #18 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #19 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> Note: @0:00:01.782 in thread 4076
> Note: instruction: mov    (%ebx,%esi) -> %al
>
> Potential Error #62: UNINITIALIZED READ: reading register ebx
> # 0 RPCRT4.dll!UuidCreate                  +0x1af    (0x77db6403 <RPCRT4.dll+0x6403>)
> # 1 RPCRT4.dll!UuidCreate                  +0x106    (0x77db635b <RPCRT4.dll+0x635b>)
> # 2 RPCRT4.dll!UuidCreate                  +0xc4     (0x77db6319 <RPCRT4.dll+0x6319>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext   +0x6dd    (0x77de1fd7 <RPCRT4.dll+0x31fd7>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x5d9    (0x77de1ed3 <RPCRT4.dll+0x31ed3>)
> # 5 RPCRT4.dll!I_RpcBindingIsClientLocal   +0x35b    (0x77dc7718 <RPCRT4.dll+0x17718>)
> # 6 RPCRT4.dll!NdrConformantArrayFree      +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 7 RPCRT4.dll!I_RpcGetBufferWithObject    +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> # 8 RPCRT4.dll!I_RpcGetBuffer              +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> # 9 RPCRT4.dll!NdrGetBuffer                +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #10 RPCRT4.dll!NdrClientCall2              +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #14 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #15 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #16 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #17 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #18 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #19 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> Note: @0:00:01.782 in thread 4076
> Note: instruction: mov    (%ebx,%esi) -> %al
>
> Potential Error #63: UNINITIALIZED READ: reading register ebx
> # 0 RPCRT4.dll!UuidCreate                  +0x1c4    (0x77db6418 <RPCRT4.dll+0x6418>)
> # 1 RPCRT4.dll!UuidCreate                  +0x106    (0x77db635b <RPCRT4.dll+0x635b>)
> # 2 RPCRT4.dll!UuidCreate                  +0xc4     (0x77db6319 <RPCRT4.dll+0x6319>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext   +0x6dd    (0x77de1fd7 <RPCRT4.dll+0x31fd7>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x5d9    (0x77de1ed3 <RPCRT4.dll+0x31ed3>)
> # 5 RPCRT4.dll!I_RpcBindingIsClientLocal   +0x35b    (0x77dc7718 <RPCRT4.dll+0x17718>)
> # 6 RPCRT4.dll!NdrConformantArrayFree      +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 7 RPCRT4.dll!I_RpcGetBufferWithObject    +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> # 8 RPCRT4.dll!I_RpcGetBuffer              +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> # 9 RPCRT4.dll!NdrGetBuffer                +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #10 RPCRT4.dll!NdrClientCall2              +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #14 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #15 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #16 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #17 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #18 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #19 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> Note: @0:00:01.782 in thread 4076
> Note: instruction: mov    (%ebx,%esi) -> %al
>
> Potential Error #64: UNINITIALIZED READ: reading 0x0012e1c8-0x0012e1e4 28 byte(s) within 0x0012e1c0-0x0012e27c
> # 0 system call NtConnectPort parameter #6
> # 1 ntdll.dll!ZwConnectPort                             +0xb      (0x7c90d03c <ntdll.dll+0xd03c>)
> # 2 RPCRT4.dll!RpcSsDestroyClientContext                +0x899    (0x77de2193 <RPCRT4.dll+0x32193>)
> # 3 RPCRT4.dll!NdrTypeFlags                             +0x36f    (0x77db60a8 <RPCRT4.dll+0x60a8>)
> # 4 RPCRT4.dll!NdrTypeFlags                             +0x37b    (0x77db60b4 <RPCRT4.dll+0x60b4>)
> # 5 RPCRT4.dll!RpcSsDestroyClientContext                +0xf5     (0x77de19ef <RPCRT4.dll+0x319ef>)
> # 6 RPCRT4.dll!RpcSsDestroyClientContext                +0x75     (0x77de196f <RPCRT4.dll+0x3196f>)
> # 7 RPCRT4.dll!NdrConformantArrayFree                   +0x600    (0x77dbbff7 <RPCRT4.dll+0xbff7>)
> # 8 RPCRT4.dll!NdrConformantArrayFree                   +0x512    (0x77dbbf09 <RPCRT4.dll+0xbf09>)
> # 9 RPCRT4.dll!I_RpcGetBufferWithObject                 +0x47     (0x77db8a01 <RPCRT4.dll+0x8a01>)
> #10 RPCRT4.dll!I_RpcGetBuffer                           +0xe      (0x77db8a38 <RPCRT4.dll+0x8a38>)
> #11 RPCRT4.dll!NdrGetBuffer                             +0x27     (0x77db906d <RPCRT4.dll+0x906d>)
> #12 RPCRT4.dll!NdrClientCall2                           +0x13a    (0x77e3460b <RPCRT4.dll+0x8460b>)
> #13 DNSAPI.dll!DnsQueryConfig                           +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #14 DNSAPI.dll!DnsQueryConfig                           +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #15 DNSAPI.dll!DnsQueryConfig                           +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #16 DNSAPI.dll!DnsQueryConfig                           +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #17 DNSAPI.dll!DnsQuery_W                               +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #18 MSWSOCK.dll!SvchostPushServiceGlobals               +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #19 MSWSOCK.dll!dn_expand                               +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> Note: @0:00:01.782 in thread 4076
>
> Potential Error #65: UNINITIALIZED READ: reading 0x00f36028-0x00f3602c 4 byte(s)
> # 0 RPCRT4.dll!NdrpMemoryIncrement         +0x380    (0x77dba97d <RPCRT4.dll+0xa97d>)
> # 1 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 2 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 3 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 4 RPCRT4.dll!NdrClientCall2              +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 5 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> # 6 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> # 7 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> # 8 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> # 9 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #10 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #11 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #12 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #13 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #14 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #15 WS2_32.dll!WSALookupServiceNextW       +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> #16 WS2_32.dll!WSALookupServiceNextA       +0x6a8    (0x71a76136 <WS2_32.dll+0x6136>)
> #17 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #18 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #19 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> Note: @0:00:01.782 in thread 4076
> Note: instruction: cmp    (%ecx) $0x00000000
>
> Potential Error #66: UNINITIALIZED READ: reading register eax
> # 0 RPCRT4.dll!RpcSsDestroyClientContext    +0x13bd   (0x77de2cb6 <RPCRT4.dll+0x32cb6>)
> # 1 RPCRT4.dll!NdrFixedArrayUnmarshall      +0x374    (0x77dce60c <RPCRT4.dll+0x1e60c>)
> # 2 RPCRT4.dll!NdrComplexStructUnmarshall   +0x81     (0x77dc69ab <RPCRT4.dll+0x169ab>)
> # 3 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 4 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 5 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 6 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 7 RPCRT4.dll!NdrClientCall2               +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 8 DNSAPI.dll!DnsQueryConfig               +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> # 9 DNSAPI.dll!DnsQueryConfig               +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #10 DNSAPI.dll!DnsQueryConfig               +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #11 DNSAPI.dll!DnsQueryConfig               +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #12 DNSAPI.dll!DnsQuery_W                   +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #13 MSWSOCK.dll!SvchostPushServiceGlobals   +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #14 MSWSOCK.dll!dn_expand                   +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #15 WS2_32.dll!WSALookupServiceNextW        +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #16 WS2_32.dll!WSALookupServiceNextW        +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #17 WS2_32.dll!WSALookupServiceNextW        +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #18 WS2_32.dll!WSALookupServiceNextW        +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> #19 WS2_32.dll!WSALookupServiceNextA        +0x6a8    (0x71a76136 <WS2_32.dll+0x6136>)
> Note: @0:00:01.782 in thread 4076
> Note: instruction: test   %eax %eax
>
> Potential Error #67: UNINITIALIZED READ: reading register eflags
> # 0 RPCRT4.dll!NdrGetTypeFlags              +0x368    (0x77db965c <RPCRT4.dll+0x965c>)
> # 1 RPCRT4.dll!RpcSsDestroyClientContext    +0x1405   (0x77de2cff <RPCRT4.dll+0x32cff>)
> # 2 RPCRT4.dll!NdrFixedArrayUnmarshall      +0x374    (0x77dce60c <RPCRT4.dll+0x1e60c>)
> # 3 RPCRT4.dll!NdrComplexStructUnmarshall   +0x81     (0x77dc69ab <RPCRT4.dll+0x169ab>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 8 RPCRT4.dll!NdrClientCall2               +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 9 DNSAPI.dll!DnsQueryConfig               +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #10 DNSAPI.dll!DnsQueryConfig               +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #11 DNSAPI.dll!DnsQueryConfig               +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #12 DNSAPI.dll!DnsQueryConfig               +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #13 DNSAPI.dll!DnsQuery_W                   +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals   +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #15 MSWSOCK.dll!dn_expand                   +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #16 WS2_32.dll!WSALookupServiceNextW        +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #17 WS2_32.dll!WSALookupServiceNextW        +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #18 WS2_32.dll!WSALookupServiceNextW        +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #19 WS2_32.dll!WSALookupServiceNextW        +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> Note: @0:00:01.782 in thread 4076
> Note: instruction: jo     $0x77df08fd
>
> Potential Error #68: UNINITIALIZED READ: reading register eax
> # 0 RPCRT4.dll!NdrGetTypeFlags              +0x378    (0x77db966c <RPCRT4.dll+0x966c>)
> # 1 RPCRT4.dll!RpcSsDestroyClientContext    +0x1405   (0x77de2cff <RPCRT4.dll+0x32cff>)
> # 2 RPCRT4.dll!NdrFixedArrayUnmarshall      +0x374    (0x77dce60c <RPCRT4.dll+0x1e60c>)
> # 3 RPCRT4.dll!NdrComplexStructUnmarshall   +0x81     (0x77dc69ab <RPCRT4.dll+0x169ab>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 8 RPCRT4.dll!NdrClientCall2               +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 9 DNSAPI.dll!DnsQueryConfig               +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #10 DNSAPI.dll!DnsQueryConfig               +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #11 DNSAPI.dll!DnsQueryConfig               +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #12 DNSAPI.dll!DnsQueryConfig               +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #13 DNSAPI.dll!DnsQuery_W                   +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals   +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #15 MSWSOCK.dll!dn_expand                   +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #16 WS2_32.dll!WSALookupServiceNextW        +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #17 WS2_32.dll!WSALookupServiceNextW        +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #18 WS2_32.dll!WSALookupServiceNextW        +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #19 WS2_32.dll!WSALookupServiceNextW        +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> Note: @0:00:01.782 in thread 4076
> Note: instruction: cmp    %eax $0x7fffffff
>
> Potential Error #69: UNINITIALIZED READ: reading 0x00f36030-0x00f36034 4 byte(s)
> # 0 RPCRT4.dll!NdrpMemoryIncrement         +0x380    (0x77dba97d <RPCRT4.dll+0xa97d>)
> # 1 RPCRT4.dll!NdrComplexStructFree        +0x2a5    (0x77dc6e49 <RPCRT4.dll+0x16e49>)
> # 2 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 3 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrClientCall2              +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 7 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> # 8 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> # 9 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #10 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #11 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #12 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #13 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #14 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #15 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #16 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #17 WS2_32.dll!WSALookupServiceNextW       +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> #18 WS2_32.dll!WSALookupServiceNextA       +0x6a8    (0x71a76136 <WS2_32.dll+0x6136>)
> #19 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> Note: @0:00:01.782 in thread 4076
> Note: instruction: cmp    (%ecx) $0x00000000
>
> Potential Error #70: UNINITIALIZED READ: reading 0x0012e27c-0x0012e280 4 byte(s)
> # 0 RPCRT4.dll!NdrGetTypeFlags                 +0x3c7    (0x77db96bb <RPCRT4.dll+0x96bb>)
> # 1 RPCRT4.dll!NdrConformantStringUnmarshall   +0x6a     (0x77dbf35b <RPCRT4.dll+0xf35b>)
> # 2 RPCRT4.dll!NdrConformantStringUnmarshall   +0x22e    (0x77dbf51f <RPCRT4.dll+0xf51f>)
> # 3 RPCRT4.dll!NdrComplexStructFree            +0x2a5    (0x77dc6e49 <RPCRT4.dll+0x16e49>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 8 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 9 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #10 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #11 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #12 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #13 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #15 MSWSOCK.dll!dn_expand                      +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #16 WS2_32.dll!WSALookupServiceNextW           +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #17 WS2_32.dll!WSALookupServiceNextW           +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #18 WS2_32.dll!WSALookupServiceNextW           +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #19 WS2_32.dll!WSALookupServiceNextW           +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> Note: @0:00:01.782 in thread 4076
> Note: instruction: test   0x08(%ebp) %eax
>
> Potential Error #71: UNINITIALIZED READ: reading register ecx
> # 0 RPCRT4.dll!NdrConformantStringUnmarshall   +0x124    (0x77dbf414 <RPCRT4.dll+0xf414>)
> # 1 RPCRT4.dll!NdrConformantStringUnmarshall   +0xb9     (0x77dbf3aa <RPCRT4.dll+0xf3aa>)
> # 2 RPCRT4.dll!NdrConformantStringUnmarshall   +0x22e    (0x77dbf51f <RPCRT4.dll+0xf51f>)
> # 3 RPCRT4.dll!NdrComplexStructFree            +0x2a5    (0x77dc6e49 <RPCRT4.dll+0x16e49>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 8 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 9 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #10 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #11 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #12 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #13 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #15 MSWSOCK.dll!dn_expand                      +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #16 WS2_32.dll!WSALookupServiceNextW           +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #17 WS2_32.dll!WSALookupServiceNextW           +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #18 WS2_32.dll!WSALookupServiceNextW           +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #19 WS2_32.dll!WSALookupServiceNextW           +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: test   %ecx %ecx
>
> Potential Error #72: UNINITIALIZED READ: reading register esi
> # 0 RPCRT4.dll!NdrConformantStringUnmarshall   +0x132    (0x77dbf422 <RPCRT4.dll+0xf422>)
> # 1 RPCRT4.dll!NdrConformantStringUnmarshall   +0xb9     (0x77dbf3aa <RPCRT4.dll+0xf3aa>)
> # 2 RPCRT4.dll!NdrConformantStringUnmarshall   +0x22e    (0x77dbf51f <RPCRT4.dll+0xf51f>)
> # 3 RPCRT4.dll!NdrComplexStructFree            +0x2a5    (0x77dc6e49 <RPCRT4.dll+0x16e49>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 8 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 9 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #10 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #11 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #12 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #13 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #15 MSWSOCK.dll!dn_expand                      +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #16 WS2_32.dll!WSALookupServiceNextW           +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #17 WS2_32.dll!WSALookupServiceNextW           +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #18 WS2_32.dll!WSALookupServiceNextW           +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #19 WS2_32.dll!WSALookupServiceNextW           +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: test   %esi %esi
>
> Potential Error #73: UNINITIALIZED READ: reading register ecx
> # 0 RPCRT4.dll!NdrConformantStringUnmarshall   +0x13d    (0x77dbf42d <RPCRT4.dll+0xf42d>)
> # 1 RPCRT4.dll!NdrConformantStringUnmarshall   +0xb9     (0x77dbf3aa <RPCRT4.dll+0xf3aa>)
> # 2 RPCRT4.dll!NdrConformantStringUnmarshall   +0x22e    (0x77dbf51f <RPCRT4.dll+0xf51f>)
> # 3 RPCRT4.dll!NdrComplexStructFree            +0x2a5    (0x77dc6e49 <RPCRT4.dll+0x16e49>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 8 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 9 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #10 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #11 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #12 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #13 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #15 MSWSOCK.dll!dn_expand                      +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #16 WS2_32.dll!WSALookupServiceNextW           +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #17 WS2_32.dll!WSALookupServiceNextW           +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #18 WS2_32.dll!WSALookupServiceNextW           +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #19 WS2_32.dll!WSALookupServiceNextW           +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: cmp    %ecx %esi
>
> Potential Error #74: UNINITIALIZED READ: reading register dl
> # 0 RPCRT4.dll!NdrConformantStringUnmarshall   +0x19b    (0x77dbf48b <RPCRT4.dll+0xf48b>)
> # 1 RPCRT4.dll!NdrConformantStringUnmarshall   +0xb9     (0x77dbf3aa <RPCRT4.dll+0xf3aa>)
> # 2 RPCRT4.dll!NdrConformantStringUnmarshall   +0x22e    (0x77dbf51f <RPCRT4.dll+0xf51f>)
> # 3 RPCRT4.dll!NdrComplexStructFree            +0x2a5    (0x77dc6e49 <RPCRT4.dll+0x16e49>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 8 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 9 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #10 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #11 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #12 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #13 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #15 MSWSOCK.dll!dn_expand                      +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #16 WS2_32.dll!WSALookupServiceNextW           +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #17 WS2_32.dll!WSALookupServiceNextW           +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #18 WS2_32.dll!WSALookupServiceNextW           +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #19 WS2_32.dll!WSALookupServiceNextW           +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: test   %dl %dl
>
> Potential Error #75: UNINITIALIZED READ: reading 0x0012e484-0x0012e488 4 byte(s)
> # 0 RPCRT4.dll!NdrComplexStructFree        +0x27a    (0x77dc6e1d <RPCRT4.dll+0x16e1d>)
> # 1 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 2 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 3 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 4 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 5 RPCRT4.dll!NdrClientCall2              +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 6 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> # 7 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> # 8 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> # 9 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #10 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #11 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #12 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #13 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #14 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #15 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #16 WS2_32.dll!WSALookupServiceNextW       +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> #17 WS2_32.dll!WSALookupServiceNextA       +0x6a8    (0x71a76136 <WS2_32.dll+0x6136>)
> #18 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #19 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: cmp    0x34(%esi) $0x00000000
>
> Potential Error #76: UNINITIALIZED READ: reading 0x0012e2a8-0x0012e2ac 4 byte(s)
> # 0 RPCRT4.dll!NdrGetTypeFlags              +0x3c7    (0x77db96bb <RPCRT4.dll+0x96bb>)
> # 1 RPCRT4.dll!NdrConformantArrayMarshall   +0x4f     (0x77dbb8d0 <RPCRT4.dll+0xb8d0>)
> # 2 RPCRT4.dll!NdrFixedArrayUnmarshall      +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 3 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 4 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 5 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 6 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 7 RPCRT4.dll!NdrClientCall2               +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 8 DNSAPI.dll!DnsQueryConfig               +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> # 9 DNSAPI.dll!DnsQueryConfig               +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #10 DNSAPI.dll!DnsQueryConfig               +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #11 DNSAPI.dll!DnsQueryConfig               +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #12 DNSAPI.dll!DnsQuery_W                   +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #13 MSWSOCK.dll!SvchostPushServiceGlobals   +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #14 MSWSOCK.dll!dn_expand                   +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #15 WS2_32.dll!WSALookupServiceNextW        +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #16 WS2_32.dll!WSALookupServiceNextW        +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #17 WS2_32.dll!WSALookupServiceNextW        +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #18 WS2_32.dll!WSALookupServiceNextW        +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> #19 WS2_32.dll!WSALookupServiceNextA        +0x6a8    (0x71a76136 <WS2_32.dll+0x6136>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: test   0x08(%ebp) %eax
>
> Potential Error #77: UNINITIALIZED READ: reading register edi
> # 0 RPCRT4.dll!NdrOutInit                   +0x1f6    (0x77dba1b5 <RPCRT4.dll+0xa1b5>)
> # 1 RPCRT4.dll!NdrOutInit                   +0xd5     (0x77dba095 <RPCRT4.dll+0xa095>)
> # 2 RPCRT4.dll!NdrConformantArrayMarshall   +0x64     (0x77dbb8e5 <RPCRT4.dll+0xb8e5>)
> # 3 RPCRT4.dll!NdrFixedArrayUnmarshall      +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 8 RPCRT4.dll!NdrClientCall2               +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 9 DNSAPI.dll!DnsQueryConfig               +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #10 DNSAPI.dll!DnsQueryConfig               +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #11 DNSAPI.dll!DnsQueryConfig               +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #12 DNSAPI.dll!DnsQueryConfig               +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #13 DNSAPI.dll!DnsQuery_W                   +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals   +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #15 MSWSOCK.dll!dn_expand                   +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #16 WS2_32.dll!WSALookupServiceNextW        +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #17 WS2_32.dll!WSALookupServiceNextW        +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #18 WS2_32.dll!WSALookupServiceNextW        +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #19 WS2_32.dll!WSALookupServiceNextW        +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: cmp    %edi 0x14(%ebp)
>
> Potential Error #78: UNINITIALIZED READ: reading register ecx
> # 0 RPCRT4.dll!NdrConformantArrayMarshall   +0x68     (0x77dbb8e8 <RPCRT4.dll+0xb8e8>)
> # 1 RPCRT4.dll!NdrFixedArrayUnmarshall      +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 2 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 3 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement          +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall         +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrClientCall2               +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 7 DNSAPI.dll!DnsQueryConfig               +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> # 8 DNSAPI.dll!DnsQueryConfig               +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> # 9 DNSAPI.dll!DnsQueryConfig               +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #10 DNSAPI.dll!DnsQueryConfig               +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #11 DNSAPI.dll!DnsQuery_W                   +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #12 MSWSOCK.dll!SvchostPushServiceGlobals   +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #13 MSWSOCK.dll!dn_expand                   +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #14 WS2_32.dll!WSALookupServiceNextW        +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #15 WS2_32.dll!WSALookupServiceNextW        +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #16 WS2_32.dll!WSALookupServiceNextW        +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #17 WS2_32.dll!WSALookupServiceNextW        +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> #18 WS2_32.dll!WSALookupServiceNextA        +0x6a8    (0x71a76136 <WS2_32.dll+0x6136>)
> #19 WS2_32.dll!WSALookupServiceNextA        +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: cmp    %ecx %ebx
>
> Potential Error #79: UNINITIALIZED READ: reading register edx
> # 0 RPCRT4.dll!RpcSsDestroyClientContext   +0x1181   (0x77de2a7a <RPCRT4.dll+0x32a7a>)
> # 1 RPCRT4.dll!RpcSsDestroyClientContext   +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 2 RPCRT4.dll!RpcSsDestroyClientContext   +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 3 RPCRT4.dll!NdrFixedArrayUnmarshall     +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 4 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 5 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 6 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 7 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 8 RPCRT4.dll!NdrClientCall2              +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> # 9 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #10 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #13 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #15 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #16 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #17 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #18 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #19 WS2_32.dll!WSALookupServiceNextW       +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: test   %edx %edx
>
> Potential Error #80: UNINITIALIZED READ: reading 0x00f36054-0x00f36058 4 byte(s)
> # 0 RPCRT4.dll!NdrpMemoryIncrement         +0x380    (0x77dba97d <RPCRT4.dll+0xa97d>)
> # 1 RPCRT4.dll!RpcSsDestroyClientContext   +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 2 RPCRT4.dll!RpcSsDestroyClientContext   +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext   +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 4 RPCRT4.dll!NdrFixedArrayUnmarshall     +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 5 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 6 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 7 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 8 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 9 RPCRT4.dll!NdrClientCall2              +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #10 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #14 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #15 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #16 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #17 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #18 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #19 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: cmp    (%ecx) $0x00000000
>
> Potential Error #81: UNINITIALIZED READ: reading register edi
> # 0 RPCRT4.dll!NdrOutInit                      +0x1f6    (0x77dba1b5 <RPCRT4.dll+0xa1b5>)
> # 1 RPCRT4.dll!NdrOutInit                      +0xd5     (0x77dba095 <RPCRT4.dll+0xa095>)
> # 2 RPCRT4.dll!NdrConformantStructUnmarshall   +0x8a     (0x77dbf6e3 <RPCRT4.dll+0xf6e3>)
> # 3 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext       +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 5 RPCRT4.dll!RpcSsDestroyClientContext       +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 6 RPCRT4.dll!RpcSsDestroyClientContext       +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 7 RPCRT4.dll!NdrFixedArrayUnmarshall         +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 8 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 9 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #10 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #11 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #12 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #13 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #14 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #15 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #16 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #17 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #18 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #19 MSWSOCK.dll!dn_expand                      +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: cmp    %edi 0x14(%ebp)
>
> Potential Error #82: UNINITIALIZED READ: reading register eflags
> # 0 RPCRT4.dll!NdrGetTypeFlags                 +0x368    (0x77db965c <RPCRT4.dll+0x965c>)
> # 1 RPCRT4.dll!NdrConformantStructUnmarshall   +0xa0     (0x77dbf6f9 <RPCRT4.dll+0xf6f9>)
> # 2 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext       +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext       +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 5 RPCRT4.dll!RpcSsDestroyClientContext       +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 6 RPCRT4.dll!NdrFixedArrayUnmarshall         +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 7 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 8 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 9 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #10 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #11 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #12 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #13 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #14 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #15 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #16 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #17 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #18 MSWSOCK.dll!dn_expand                      +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #19 WS2_32.dll!WSALookupServiceNextW           +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: jo     $0x77df08fd
>
> Potential Error #83: UNINITIALIZED READ: reading register eax
> # 0 RPCRT4.dll!NdrGetTypeFlags                 +0x378    (0x77db966c <RPCRT4.dll+0x966c>)
> # 1 RPCRT4.dll!NdrConformantStructUnmarshall   +0xa0     (0x77dbf6f9 <RPCRT4.dll+0xf6f9>)
> # 2 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext       +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext       +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 5 RPCRT4.dll!RpcSsDestroyClientContext       +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 6 RPCRT4.dll!NdrFixedArrayUnmarshall         +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 7 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 8 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 9 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #10 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #11 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #12 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #13 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #14 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #15 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #16 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #17 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #18 MSWSOCK.dll!dn_expand                      +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #19 WS2_32.dll!WSALookupServiceNextW           +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: cmp    %eax $0x7fffffff
>
> Potential Error #84: UNINITIALIZED READ: reading 0x0012e1e0-0x0012e1e4 4 byte(s)
> # 0 RPCRT4.dll!NdrGetTypeFlags                 +0x3c7    (0x77db96bb <RPCRT4.dll+0x96bb>)
> # 1 RPCRT4.dll!NdrConformantStructUnmarshall   +0xb4     (0x77dbf70d <RPCRT4.dll+0xf70d>)
> # 2 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 3 RPCRT4.dll!RpcSsDestroyClientContext       +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext       +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 5 RPCRT4.dll!RpcSsDestroyClientContext       +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 6 RPCRT4.dll!NdrFixedArrayUnmarshall         +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 7 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 8 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> # 9 RPCRT4.dll!NdrpMemoryIncrement             +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #10 RPCRT4.dll!NdrPointerUnmarshall            +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #11 RPCRT4.dll!NdrClientCall2                  +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #12 DNSAPI.dll!DnsQueryConfig                  +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #13 DNSAPI.dll!DnsQueryConfig                  +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #14 DNSAPI.dll!DnsQueryConfig                  +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #15 DNSAPI.dll!DnsQueryConfig                  +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #16 DNSAPI.dll!DnsQuery_W                      +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #17 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #18 MSWSOCK.dll!dn_expand                      +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> #19 WS2_32.dll!WSALookupServiceNextW           +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: test   0x08(%ebp) %eax
>
> Potential Error #85: UNINITIALIZED READ: reading 0x00f36070-0x00f36074 4 byte(s)
> # 0 RPCRT4.dll!NdrpMemoryIncrement         +0x380    (0x77dba97d <RPCRT4.dll+0xa97d>)
> # 1 RPCRT4.dll!NdrSimpleStructBufferSize   +0x1be    (0x77dbb0e9 <RPCRT4.dll+0xb0e9>)
> # 2 RPCRT4.dll!NdrConformantStructFree     +0x91     (0x77de3936 <RPCRT4.dll+0x33936>)
> # 3 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 5 RPCRT4.dll!RpcSsDestroyClientContext   +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 6 RPCRT4.dll!RpcSsDestroyClientContext   +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 7 RPCRT4.dll!NdrFixedArrayUnmarshall     +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 8 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 9 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #10 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #11 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #12 RPCRT4.dll!NdrClientCall2              +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #14 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #15 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #16 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #17 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #18 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #19 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: cmp    (%ecx) $0x00000000
>
> Potential Error #86: UNINITIALIZED READ: reading register ecx
> # 0 RPCRT4.dll!NdrpMemoryIncrement         +0x359    (0x77dba956 <RPCRT4.dll+0xa956>)
> # 1 RPCRT4.dll!NdrSimpleStructBufferSize   +0x1be    (0x77dbb0e9 <RPCRT4.dll+0xb0e9>)
> # 2 RPCRT4.dll!NdrConformantStructFree     +0x91     (0x77de3936 <RPCRT4.dll+0x33936>)
> # 3 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 4 RPCRT4.dll!RpcSsDestroyClientContext   +0x11c0   (0x77de2aba <RPCRT4.dll+0x32aba>)
> # 5 RPCRT4.dll!RpcSsDestroyClientContext   +0x111d   (0x77de2a17 <RPCRT4.dll+0x32a17>)
> # 6 RPCRT4.dll!RpcSsDestroyClientContext   +0x1229   (0x77de2b23 <RPCRT4.dll+0x32b23>)
> # 7 RPCRT4.dll!NdrFixedArrayUnmarshall     +0x2ca    (0x77dce562 <RPCRT4.dll+0x1e562>)
> # 8 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> # 9 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #10 RPCRT4.dll!NdrpMemoryIncrement         +0x3f1    (0x77dba9ef <RPCRT4.dll+0xa9ef>)
> #11 RPCRT4.dll!NdrPointerUnmarshall        +0x33     (0x77dbadae <RPCRT4.dll+0xadae>)
> #12 RPCRT4.dll!NdrClientCall2              +0x1b7    (0x77e34688 <RPCRT4.dll+0x84688>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x4eb    (0x76f07f5c <DNSAPI.dll+0x7f5c>)
> #14 DNSAPI.dll!DnsQueryConfig              +0x48b    (0x76f07efc <DNSAPI.dll+0x7efc>)
> #15 DNSAPI.dll!DnsQueryConfig              +0x437    (0x76f07ea8 <DNSAPI.dll+0x7ea8>)
> #16 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> #17 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> #18 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> #19 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: cmp    %ecx 0x0c(%esi)
>
> Potential Error #87: UNINITIALIZED READ: reading register cl
> # 0 DNSAPI.dll!DnsApiFree                  +0x192    (0x76f038f3 <DNSAPI.dll+0x38f3>)
> # 1 DNSAPI.dll!NetInfo_Copy                +0x4a     (0x76f03a60 <DNSAPI.dll+0x3a60>)
> # 2 DNSAPI.dll!DnsQueryConfig              +0x44f    (0x76f07ec0 <DNSAPI.dll+0x7ec0>)
> # 3 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> # 4 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> # 5 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> # 6 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> # 7 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> # 8 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> # 9 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #10 WS2_32.dll!WSALookupServiceNextW       +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> #11 WS2_32.dll!WSALookupServiceNextA       +0x6a8    (0x71a76136 <WS2_32.dll+0x6136>)
> #12 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #13 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #14 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> #15 WS2_32.dll!getaddrinfo                 +0x5a     (0x71a72aca <WS2_32.dll+0x2aca>)
> #16 LIBPQ.dll!pqsignal                     +0x360    (0x10017b61 <LIBPQ.dll+0x17b61>)
> #17 LIBPQ.dll!PQpingParams                 +0xe9b    (0x10006bfc <LIBPQ.dll+0x6bfc>)
> #18 LIBPQ.dll!PQconnectdb                  +0x35     (0x10005096 <LIBPQ.dll+0x5096>)
> #19 main                                    [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:01.797 in thread 4076
> Note: instruction: test   %cl %cl
>
> Potential Error #88: UNINITIALIZED READ: reading 0x00f36234-0x00f36238 4 byte(s)
> # 0 DNSAPI.dll!NetInfo_Copy                +0x59     (0x76f03a6e <DNSAPI.dll+0x3a6e>)
> # 1 DNSAPI.dll!DnsQueryConfig              +0x4b9    (0x76f07f2a <DNSAPI.dll+0x7f2a>)
> # 2 DNSAPI.dll!DnsQueryConfig              +0x4b9    (0x76f07f2a <DNSAPI.dll+0x7f2a>)
> # 3 DNSAPI.dll!DnsQueryConfig              +0x44f    (0x76f07ec0 <DNSAPI.dll+0x7ec0>)
> # 4 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> # 5 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> # 6 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> # 7 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> # 8 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> # 9 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #10 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #11 WS2_32.dll!WSALookupServiceNextW       +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> #12 WS2_32.dll!WSALookupServiceNextA       +0x6a8    (0x71a76136 <WS2_32.dll+0x6136>)
> #13 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #14 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #15 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> #16 WS2_32.dll!getaddrinfo                 +0x5a     (0x71a72aca <WS2_32.dll+0x2aca>)
> #17 LIBPQ.dll!pqsignal                     +0x360    (0x10017b61 <LIBPQ.dll+0x17b61>)
> #18 LIBPQ.dll!PQpingParams                 +0xe9b    (0x10006bfc <LIBPQ.dll+0x6bfc>)
> #19 LIBPQ.dll!PQconnectdb                  +0x35     (0x10005096 <LIBPQ.dll+0x5096>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: cmp    0x1c(%ebx) %edi
>
> Potential Error #89: UNINITIALIZED READ: reading register ecx
> # 0 DNSAPI.dll!NetInfo_Copy                +0xdc     (0x76f03af1 <DNSAPI.dll+0x3af1>)
> # 1 DNSAPI.dll!NetInfo_Copy                +0x73     (0x76f03a89 <DNSAPI.dll+0x3a89>)
> # 2 DNSAPI.dll!DnsQueryConfig              +0x44f    (0x76f07ec0 <DNSAPI.dll+0x7ec0>)
> # 3 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> # 4 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> # 5 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> # 6 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> # 7 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> # 8 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> # 9 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #10 WS2_32.dll!WSALookupServiceNextW       +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> #11 WS2_32.dll!WSALookupServiceNextA       +0x6a8    (0x71a76136 <WS2_32.dll+0x6136>)
> #12 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #13 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #14 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> #15 WS2_32.dll!getaddrinfo                 +0x5a     (0x71a72aca <WS2_32.dll+0x2aca>)
> #16 LIBPQ.dll!pqsignal                     +0x360    (0x10017b61 <LIBPQ.dll+0x17b61>)
> #17 LIBPQ.dll!PQpingParams                 +0xe9b    (0x10006bfc <LIBPQ.dll+0x6bfc>)
> #18 LIBPQ.dll!PQconnectdb                  +0x35     (0x10005096 <LIBPQ.dll+0x5096>)
> #19 main                                    [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:01.797 in thread 4076
> Note: instruction: rep movs %ds:(%esi) %esi %edi %ecx -> %es:(%edi) %esi %edi %ecx
>
> Potential Error #90: UNINITIALIZED READ: reading register cl
> # 0 DNSAPI.dll!DnsApiFree                  +0x192    (0x76f038f3 <DNSAPI.dll+0x38f3>)
> # 1 DNSAPI.dll!NetInfo_Copy                +0xf3     (0x76f03b09 <DNSAPI.dll+0x3b09>)
> # 2 DNSAPI.dll!NetInfo_Copy                +0x73     (0x76f03a89 <DNSAPI.dll+0x3a89>)
> # 3 DNSAPI.dll!DnsQueryConfig              +0x44f    (0x76f07ec0 <DNSAPI.dll+0x7ec0>)
> # 4 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> # 5 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> # 6 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> # 7 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> # 8 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> # 9 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #10 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #11 WS2_32.dll!WSALookupServiceNextW       +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> #12 WS2_32.dll!WSALookupServiceNextA       +0x6a8    (0x71a76136 <WS2_32.dll+0x6136>)
> #13 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #14 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #15 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> #16 WS2_32.dll!getaddrinfo                 +0x5a     (0x71a72aca <WS2_32.dll+0x2aca>)
> #17 LIBPQ.dll!pqsignal                     +0x360    (0x10017b61 <LIBPQ.dll+0x17b61>)
> #18 LIBPQ.dll!PQpingParams                 +0xe9b    (0x10006bfc <LIBPQ.dll+0x6bfc>)
> #19 LIBPQ.dll!PQconnectdb                  +0x35     (0x10005096 <LIBPQ.dll+0x5096>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: test   %cl %cl
>
> Potential Error #91: UNINITIALIZED READ: reading register ecx
> # 0 DNSAPI.dll!NetInfo_Copy                +0x181    (0x76f03b96 <DNSAPI.dll+0x3b96>)
> # 1 DNSAPI.dll!NetInfo_Copy                +0x13e    (0x76f03b54 <DNSAPI.dll+0x3b54>)
> # 2 DNSAPI.dll!NetInfo_Copy                +0x10d    (0x76f03b23 <DNSAPI.dll+0x3b23>)
> # 3 DNSAPI.dll!NetInfo_Copy                +0x73     (0x76f03a89 <DNSAPI.dll+0x3a89>)
> # 4 DNSAPI.dll!DnsQueryConfig              +0x44f    (0x76f07ec0 <DNSAPI.dll+0x7ec0>)
> # 5 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> # 6 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> # 7 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> # 8 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> # 9 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #10 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #11 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #12 WS2_32.dll!WSALookupServiceNextW       +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> #13 WS2_32.dll!WSALookupServiceNextA       +0x6a8    (0x71a76136 <WS2_32.dll+0x6136>)
> #14 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #15 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #16 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> #17 WS2_32.dll!getaddrinfo                 +0x5a     (0x71a72aca <WS2_32.dll+0x2aca>)
> #18 LIBPQ.dll!pqsignal                     +0x360    (0x10017b61 <LIBPQ.dll+0x17b61>)
> #19 LIBPQ.dll!PQpingParams                 +0xe9b    (0x10006bfc <LIBPQ.dll+0x6bfc>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: rep movs %ds:(%esi) %esi %edi %ecx -> %es:(%edi) %esi %edi %ecx
>
> Potential Error #92: UNINITIALIZED READ: reading register ecx
> # 0 DNSAPI.dll!NetInfo_Copy                +0x181    (0x76f03b96 <DNSAPI.dll+0x3b96>)
> # 1 DNSAPI.dll!NetInfo_Copy                +0x13e    (0x76f03b54 <DNSAPI.dll+0x3b54>)
> # 2 DNSAPI.dll!NetInfo_Copy                +0x118    (0x76f03b2e <DNSAPI.dll+0x3b2e>)
> # 3 DNSAPI.dll!NetInfo_Copy                +0x73     (0x76f03a89 <DNSAPI.dll+0x3a89>)
> # 4 DNSAPI.dll!DnsQueryConfig              +0x44f    (0x76f07ec0 <DNSAPI.dll+0x7ec0>)
> # 5 DNSAPI.dll!DnsQueryConfig              +0x275    (0x76f07ce6 <DNSAPI.dll+0x7ce6>)
> # 6 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> # 7 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> # 8 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> # 9 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> #10 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> #11 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> #12 WS2_32.dll!WSALookupServiceNextW       +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> #13 WS2_32.dll!WSALookupServiceNextA       +0x6a8    (0x71a76136 <WS2_32.dll+0x6136>)
> #14 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #15 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #16 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> #17 WS2_32.dll!getaddrinfo                 +0x5a     (0x71a72aca <WS2_32.dll+0x2aca>)
> #18 LIBPQ.dll!pqsignal                     +0x360    (0x10017b61 <LIBPQ.dll+0x17b61>)
> #19 LIBPQ.dll!PQpingParams                 +0xe9b    (0x10006bfc <LIBPQ.dll+0x6bfc>)
> Note: @0:00:01.797 in thread 4076
> Note: instruction: rep movs %ds:(%esi) %esi %edi %ecx -> %es:(%edi) %esi %edi %ecx
>
> Potential Error #93: UNINITIALIZED READ: reading 0x00f362d0-0x00f362d4 4 byte(s)
> # 0 DNSAPI.dll!DnsQueryConfig              +0x2b5    (0x76f07d25 <DNSAPI.dll+0x7d25>)
> # 1 DNSAPI.dll!DnsQuery_W                  +0x8b     (0x76f02e20 <DNSAPI.dll+0x2e20>)
> # 2 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f5b   (0x71a1b68d <MSWSOCK.dll+0xb68d>)
> # 3 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> # 4 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> # 5 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> # 6 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> # 7 WS2_32.dll!WSALookupServiceNextW       +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> # 8 WS2_32.dll!WSALookupServiceNextA       +0x6a8    (0x71a76136 <WS2_32.dll+0x6136>)
> # 9 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #10 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #11 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> #12 WS2_32.dll!getaddrinfo                 +0x5a     (0x71a72aca <WS2_32.dll+0x2aca>)
> #13 LIBPQ.dll!pqsignal                     +0x360    (0x10017b61 <LIBPQ.dll+0x17b61>)
> #14 LIBPQ.dll!PQpingParams                 +0xe9b    (0x10006bfc <LIBPQ.dll+0x6bfc>)
> #15 LIBPQ.dll!PQconnectdb                  +0x35     (0x10005096 <LIBPQ.dll+0x5096>)
> #16 main                                    [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:01.797 in thread 4076
> Note: instruction: cmp    0x28(%esi) %ebx
>
> Potential Error #94: UNINITIALIZED READ: reading 0x76f211bc-0x76f211c0 4 byte(s)
> # 0 DNSAPI.dll!Dns_InitQueryTimeouts       +0x5a7    (0x76f076e3 <DNSAPI.dll+0x76e3>)
> # 1 DNSAPI.dll!DnsQueryConfig              +0x401    (0x76f07e72 <DNSAPI.dll+0x7e72>)
> # 2 DNSAPI.dll!DnsQueryConfig              +0x3df    (0x76f07e50 <DNSAPI.dll+0x7e50>)
> # 3 DNSAPI.dll!DnsQueryConfigAllocEx       +0x3c     (0x76f07a5a <DNSAPI.dll+0x7a5a>)
> # 4 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2f66   (0x71a1b698 <MSWSOCK.dll+0xb698>)
> # 5 MSWSOCK.dll!dn_expand                  +0xa22    (0x71a2d919 <MSWSOCK.dll+0x1d919>)
> # 6 WS2_32.dll!WSALookupServiceNextW       +0x12e    (0x71a732b0 <WS2_32.dll+0x32b0>)
> # 7 WS2_32.dll!WSALookupServiceNextW       +0x10e    (0x71a73290 <WS2_32.dll+0x3290>)
> # 8 WS2_32.dll!WSALookupServiceNextW       +0xd8     (0x71a7325a <WS2_32.dll+0x325a>)
> # 9 WS2_32.dll!WSALookupServiceNextW       +0x76     (0x71a731f8 <WS2_32.dll+0x31f8>)
> #10 WS2_32.dll!WSALookupServiceNextA       +0x6a8    (0x71a76136 <WS2_32.dll+0x6136>)
> #11 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #12 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #13 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> #14 WS2_32.dll!getaddrinfo                 +0x5a     (0x71a72aca <WS2_32.dll+0x2aca>)
> #15 LIBPQ.dll!pqsignal                     +0x360    (0x10017b61 <LIBPQ.dll+0x17b61>)
> #16 LIBPQ.dll!PQpingParams                 +0xe9b    (0x10006bfc <LIBPQ.dll+0x6bfc>)
> #17 LIBPQ.dll!PQconnectdb                  +0x35     (0x10005096 <LIBPQ.dll+0x5096>)
> #18 main                                    [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:01.797 in thread 4076
> Note: instruction: cmp    0x76f211bc %ebx
>
> Potential Error #95: UNINITIALIZED READ: reading 0x0012e994-0x0012e998 4 byte(s) within 0x0012e388-0x0012e998
> # 0 system call NtDeviceIoControlFile InputBuffer
> # 1 ntdll.dll!ZwDeviceIoControlFile                            +0xb      (0x7c90d26c <ntdll.dll+0xd26c>)
> # 2 rasadhlp.dll!WSAttemptAutodialName                         +0x154    (0x76fa12f5 <rasadhlp.dll+0x12f5>)
> # 3 rasadhlp.dll!AcsHlpAttemptConnection                       +0x3e     (0x76fa138f <rasadhlp.dll+0x138f>)
> # 4 rasadhlp.dll!WSAttemptAutodialName                         +0x7d     (0x76fa121e <rasadhlp.dll+0x121e>)
> # 5 LIBPQ.dll!pqsignal                                         +0x360    (0x10017b61 <LIBPQ.dll+0x17b61>)
> # 6 LIBPQ.dll!PQpingParams                                     +0xe9b    (0x10006bfc <LIBPQ.dll+0x6bfc>)
> # 7 LIBPQ.dll!PQconnectdb                                      +0x35     (0x10005096 <LIBPQ.dll+0x5096>)
> # 8 main                                                        [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:02.047 in thread 4076
>
> Potential Error #96: UNINITIALIZED READ: reading 0x0012f8fc-0x0012f903 7 byte(s) within 0x0012f8c0-0x0012f903
> # 0 system call NtCreateFile parameter #9
> # 1 ntdll.dll!ZwCreateFile                             +0xb      (0x7c90d09c <ntdll.dll+0xd09c>)
> # 2 MSWSOCK.dll!?                                      +0x0      (0x71a149c0 <MSWSOCK.dll+0x49c0>)
> # 3 WS2_32.dll!getsockname                             +0xa9     (0x71a73dba <WS2_32.dll+0x3dba>)
> # 4 WS2_32.dll!WSASocketW                              +0x9c     (0x71a740eb <WS2_32.dll+0x40eb>)
> # 5 WS2_32.dll!socket                                  +0x4f     (0x71a74261 <WS2_32.dll+0x4261>)
> # 6 LIBPQ.dll!PQconnectPoll                            +0xc8     (0x10004439 <LIBPQ.dll+0x4439>)
> # 7 LIBPQ.dll!PQpingParams                             +0xf02    (0x10006c63 <LIBPQ.dll+0x6c63>)
> # 8 LIBPQ.dll!PQconnectdb                              +0x35     (0x10005096 <LIBPQ.dll+0x5096>)
> # 9 main                                                [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:02.204 in thread 4076
>
> Potential Error #97: UNINITIALIZED READ: reading 0x027d169c-0x027d16a0 4 byte(s) within 0x027d169c-0x027d16a4
> # 0 system call NtDeviceIoControlFile AFD_CONNECT_INFO pre-RemoteAddress
> # 1 ntdll.dll!ZwDeviceIoControlFile                                           +0xb      (0x7c90d26c
<ntdll.dll+0xd26c>)
> # 2 MSWSOCK.dll!NSPStartup                                                    +0x1aa7   (0x71a1d840
<MSWSOCK.dll+0xd840>)
> # 3 MSWSOCK.dll!?                                                             +0x0      (0x71a155a7
<MSWSOCK.dll+0x55a7>)
> # 4 MSWSOCK.dll!?                                                             +0x0      (0x71a15424
<MSWSOCK.dll+0x5424>)
> # 5 WS2_32.dll!connect                                                        +0x52     (0x71a74a5a
<WS2_32.dll+0x4a5a>)
> # 6 LIBPQ.dll!PQconnectPoll                                                   +0x1e2    (0x10004553
<LIBPQ.dll+0x4553>)
> # 7 LIBPQ.dll!PQpingParams                                                    +0xf02    (0x10006c63
<LIBPQ.dll+0x6c63>)
> # 8 LIBPQ.dll!PQconnectdb                                                     +0x35     (0x10005096
<LIBPQ.dll+0x5096>)
> # 9 main                                                                       [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:02.313 in thread 4076
>
> Potential Error #98: UNINITIALIZED READ: reading 0x00f3bdcc-0x00f3bdd0 4 byte(s) within 0x00f3bda8-0x00f3bdd0
> # 0 system call NtDeviceIoControlFile NET InputBuffer
> # 1 ntdll.dll!ZwDeviceIoControlFile                                +0xb      (0x7c90d26c <ntdll.dll+0xd26c>)
> # 2 WSHTCPIP.dll!WSHSetSocketInformation                           +0x1bc    (0x71a518fe <WSHTCPIP.dll+0x18fe>)
> # 3 WSHTCPIP.dll!WSHStringToAddress                                +0x57f    (0x71a526d2 <WSHTCPIP.dll+0x26d2>)
> # 4 MSWSOCK.dll!?                                                  +0x0      (0x71a13bbb <MSWSOCK.dll+0x3bbb>)
> # 5 MSWSOCK.dll!?                                                  +0x0      (0x71a15802 <MSWSOCK.dll+0x5802>)
> # 6 MSWSOCK.dll!NSPStartup                                         +0x1991   (0x71a1d72a <MSWSOCK.dll+0xd72a>)
> # 7 MSWSOCK.dll!NSPStartup                                         +0x1935   (0x71a1d6ce <MSWSOCK.dll+0xd6ce>)
> # 8 MSWSOCK.dll!NSPStartup                                         +0x23d3   (0x71a1e16c <MSWSOCK.dll+0xe16c>)
> # 9 MSWSOCK.dll!NSPStartup                                         +0x320e   (0x71a1efa7 <MSWSOCK.dll+0xefa7>)
> #10 WS2_32.dll!getsockopt                                          +0xfb     (0x71a747e6 <WS2_32.dll+0x47e6>)
> #11 LIBPQ.dll!PQconnectPoll                                        +0x2b2    (0x10004623 <LIBPQ.dll+0x4623>)
> #12 LIBPQ.dll!PQpingParams                                         +0x1069   (0x10006dca <LIBPQ.dll+0x6dca>)
> #13 LIBPQ.dll!PQconnectdb                                          +0x57     (0x100050b8 <LIBPQ.dll+0x50b8>)
> #14 main                                                            [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:02.391 in thread 4076
>
> Potential Error #99: UNINITIALIZED READ: reading 0x00f3be54-0x00f3be58 4 byte(s) within 0x00f3be38-0x00f3be58
> # 0 system call NtDeviceIoControlFile NET InputBuffer
> # 1 ntdll.dll!ZwDeviceIoControlFile                                +0xb      (0x7c90d26c <ntdll.dll+0xd26c>)
> # 2 WSHTCPIP.dll!WSHSetSocketInformation                           +0x1bc    (0x71a518fe <WSHTCPIP.dll+0x18fe>)
> # 3 WSHTCPIP.dll!WSHGetWildcardSockaddr                            +0x44e    (0x71a520e8 <WSHTCPIP.dll+0x20e8>)
> # 4 MSWSOCK.dll!?                                                  +0x0      (0x71a13bbb <MSWSOCK.dll+0x3bbb>)
> # 5 MSWSOCK.dll!?                                                  +0x0      (0x71a15802 <MSWSOCK.dll+0x5802>)
> # 6 MSWSOCK.dll!NSPStartup                                         +0x1991   (0x71a1d72a <MSWSOCK.dll+0xd72a>)
> # 7 MSWSOCK.dll!NSPStartup                                         +0x1935   (0x71a1d6ce <MSWSOCK.dll+0xd6ce>)
> # 8 MSWSOCK.dll!NSPStartup                                         +0x23d3   (0x71a1e16c <MSWSOCK.dll+0xe16c>)
> # 9 MSWSOCK.dll!NSPStartup                                         +0x320e   (0x71a1efa7 <MSWSOCK.dll+0xefa7>)
> #10 WS2_32.dll!getsockopt                                          +0xfb     (0x71a747e6 <WS2_32.dll+0x47e6>)
> #11 LIBPQ.dll!PQconnectPoll                                        +0x2b2    (0x10004623 <LIBPQ.dll+0x4623>)
> #12 LIBPQ.dll!PQpingParams                                         +0x1069   (0x10006dca <LIBPQ.dll+0x6dca>)
> #13 LIBPQ.dll!PQconnectdb                                          +0x57     (0x100050b8 <LIBPQ.dll+0x50b8>)
> #14 main                                                            [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:02.391 in thread 4076
>
> Potential Error #100: LEAK 956 direct bytes 0x00f3be78-0x00f3c234 + 0 indirect bytes
> # 0 replace_calloc                          [e:\b\build\slave\win-builder\drmemory\common\alloc_replace.c:2616]
> # 1 MSVCR120.dll!_calloc_crt                [f:\dd\vctools\crt\crtw32\heap\crtheap.c:62]
> # 2 MSVCR120.dll!__CRTDLL_INIT              [f:\dd\vctools\crt\crtw32\dllstuff\crtlib.c:395]
> # 3 MSVCR120.dll!_CRTDLL_INIT               [f:\dd\vctools\crt\crtw32\dllstuff\crtlib.c:214]
> # 4 ntdll.dll!LdrInitializeThunk           +0x23     (0x7c90118a <ntdll.dll+0x118a>)
> # 5 ntdll.dll!CsrNewThread                 +0xea     (0x7c91b175 <ntdll.dll+0x1b175>)
> # 6 ntdll.dll!RtlUnicodeStringToInteger    +0x17c    (0x7c91afee <ntdll.dll+0x1afee>)
> # 7 ntdll.dll!KiUserApcDispatcher          +0x6      (0x7c90e437 <ntdll.dll+0xe437>)
> # 8 ntdll.dll!LdrUnlockLoaderLock          +0x5e     (0x7c912d58 <ntdll.dll+0x12d58>)
>
> Potential Error #101: LEAK 136 direct bytes 0x017d0378-0x017d0400 + 0 indirect bytes
> # 0 replace_calloc                          [e:\b\build\slave\win-builder\drmemory\common\alloc_replace.c:2616]
> # 1 msvcrt.dll!__CRTDLL_INIT
> # 2 ntdll.dll!LdrInitializeThunk           +0x23     (0x7c90118a <ntdll.dll+0x118a>)
> # 3 ntdll.dll!CsrNewThread                 +0xea     (0x7c91b175 <ntdll.dll+0x1b175>)
> # 4 ntdll.dll!RtlUnicodeStringToInteger    +0x17c    (0x7c91afee <ntdll.dll+0x1afee>)
> # 5 ntdll.dll!KiUserApcDispatcher          +0x6      (0x7c90e437 <ntdll.dll+0xe437>)
> # 6 ntdll.dll!LdrUnlockLoaderLock          +0x5e     (0x7c912d58 <ntdll.dll+0x12d58>)
>
> Potential Error #102: LEAK 532 direct bytes 0x01fd00f8-0x01fd030c + 0 indirect bytes
> # 0 replace_calloc                          [e:\b\build\slave\win-builder\drmemory\common\alloc_replace.c:2616]
> # 1 MSVCR90.dll!_calloc_crt                 [f:\dd\vctools\crt_bld\self_x86\crt\src\crtheap.c:61]
> # 2 MSVCR90.dll!__CRTDLL_INIT               [f:\dd\vctools\crt_bld\self_x86\crt\src\crtlib.c:373]
> # 3 MSVCR90.dll!_CRTDLL_INIT                [f:\dd\vctools\crt_bld\self_x86\crt\src\crtlib.c:214]
> # 4 ntdll.dll!LdrInitializeThunk           +0x23     (0x7c90118a <ntdll.dll+0x118a>)
> # 5 ntdll.dll!CsrNewThread                 +0xea     (0x7c91b175 <ntdll.dll+0x1b175>)
> # 6 ntdll.dll!RtlUnicodeStringToInteger    +0x17c    (0x7c91afee <ntdll.dll+0x1afee>)
> # 7 ntdll.dll!KiUserApcDispatcher          +0x6      (0x7c90e437 <ntdll.dll+0xe437>)
> # 8 ntdll.dll!LdrUnlockLoaderLock          +0x5e     (0x7c912d58 <ntdll.dll+0x12d58>)
>
> Potential Error #103: HANDLE LEAK: KERNEL handle 0x0000072c and 0 similar handle(s) were opened but not closed:
> # 0 system call NtCreateFile
> # 1 MSWSOCK.dll!NSPStartup                +0x1c9b   (0x71a1da34 <MSWSOCK.dll+0xda34>)
> # 2 MSWSOCK.dll!NSPStartup                +0x1a1e   (0x71a1d7b7 <MSWSOCK.dll+0xd7b7>)
> # 3 MSWSOCK.dll!?                         +0x0      (0x71a155a7 <MSWSOCK.dll+0x55a7>)
> # 4 MSWSOCK.dll!?                         +0x0      (0x71a15424 <MSWSOCK.dll+0x5424>)
> # 5 WS2_32.dll!connect                    +0x52     (0x71a74a5a <WS2_32.dll+0x4a5a>)
> # 6 LIBPQ.dll!PQconnectPoll               +0x1e2    (0x10004553 <LIBPQ.dll+0x4553>)
> # 7 LIBPQ.dll!PQpingParams                +0xf02    (0x10006c63 <LIBPQ.dll+0x6c63>)
> # 8 LIBPQ.dll!PQconnectdb                 +0x35     (0x10005096 <LIBPQ.dll+0x5096>)
> # 9 main                                   [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:04.204 in thread 4076
>
> Potential Error #104: HANDLE LEAK: KERNEL handle 0x00000730 and 0 similar handle(s) were opened but not closed:
> # 0 system call NtCreateEvent
> # 1 MSWSOCK.dll!NSPStartup                 +0x1ba5   (0x71a1d93e <MSWSOCK.dll+0xd93e>)
> # 2 MSWSOCK.dll!NSPStartup                 +0x1a11   (0x71a1d7aa <MSWSOCK.dll+0xd7aa>)
> # 3 MSWSOCK.dll!?                          +0x0      (0x71a155a7 <MSWSOCK.dll+0x55a7>)
> # 4 MSWSOCK.dll!?                          +0x0      (0x71a15424 <MSWSOCK.dll+0x5424>)
> # 5 WS2_32.dll!connect                     +0x52     (0x71a74a5a <WS2_32.dll+0x4a5a>)
> # 6 LIBPQ.dll!PQconnectPoll                +0x1e2    (0x10004553 <LIBPQ.dll+0x4553>)
> # 7 LIBPQ.dll!PQpingParams                 +0xf02    (0x10006c63 <LIBPQ.dll+0x6c63>)
> # 8 LIBPQ.dll!PQconnectdb                  +0x35     (0x10005096 <LIBPQ.dll+0x5096>)
> # 9 main                                    [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:04.204 in thread 4076
>
> Potential Error #105: HANDLE LEAK: KERNEL handle 0x00000734 and 0 similar handle(s) were opened but not closed:
> # 0 system call NtCreateIoCompletion
> # 1 MSWSOCK.dll!NSPStartup                        +0x1b2b   (0x71a1d8c4 <MSWSOCK.dll+0xd8c4>)
> # 2 MSWSOCK.dll!NSPStartup                        +0x1a11   (0x71a1d7aa <MSWSOCK.dll+0xd7aa>)
> # 3 MSWSOCK.dll!?                                 +0x0      (0x71a155a7 <MSWSOCK.dll+0x55a7>)
> # 4 MSWSOCK.dll!?                                 +0x0      (0x71a15424 <MSWSOCK.dll+0x5424>)
> # 5 WS2_32.dll!connect                            +0x52     (0x71a74a5a <WS2_32.dll+0x4a5a>)
> # 6 LIBPQ.dll!PQconnectPoll                       +0x1e2    (0x10004553 <LIBPQ.dll+0x4553>)
> # 7 LIBPQ.dll!PQpingParams                        +0xf02    (0x10006c63 <LIBPQ.dll+0x6c63>)
> # 8 LIBPQ.dll!PQconnectdb                         +0x35     (0x10005096 <LIBPQ.dll+0x5096>)
> # 9 main                                           [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:04.204 in thread 4076
>
> Potential Error #106: HANDLE LEAK: KERNEL handle 0x00000744 and 0 similar handle(s) were opened but not closed:
> # 0 system call NtDuplicateObject
> # 1 KERNEL32.dll!DuplicateHandle               +0x64     (0x7c80def3 <KERNEL32.dll+0xdef3>)
> # 2 RPCRT4.dll!I_RpcBindingCopy                +0x365    (0x77dbe0f0 <RPCRT4.dll+0xe0f0>)
> # 3 RPCRT4.dll!I_RpcBindingCopy                +0x2e0    (0x77dbe06b <RPCRT4.dll+0xe06b>)
> # 4 RPCRT4.dll!RpcBindingFromStringBindingW    +0x19     (0x77dbeadf <RPCRT4.dll+0xeadf>)
> # 5 DNSAPI.dll!DnsQuery_W                      +0x584    (0x76f03319 <DNSAPI.dll+0x3319>)
> # 6 RPCRT4.dll!RpcStringBindingComposeW        +0x118    (0x77dbee3a <RPCRT4.dll+0xee3a>)
> # 7 RPCRT4.dll!RpcStringBindingComposeW        +0x145    (0x77dbee67 <RPCRT4.dll+0xee67>)
> # 8 RPCRT4.dll!NdrClientCall2                  +0xbc     (0x77e3458d <RPCRT4.dll+0x8458d>)
> # 9 DNSAPI.dll!DnsQueryConfig                  +0x233    (0x76f07ca4 <DNSAPI.dll+0x7ca4>)
> #10 DNSAPI.dll!DnsQueryConfig                  +0x1f4    (0x76f07c65 <DNSAPI.dll+0x7c65>)
> #11 DNSAPI.dll!DnsQueryConfig                  +0x16e    (0x76f07bdf <DNSAPI.dll+0x7bdf>)
> #12 MSWSOCK.dll!SvchostPushServiceGlobals      +0x2e8e   (0x71a1b5c0 <MSWSOCK.dll+0xb5c0>)
> #13 MSWSOCK.dll!WSPStartup                     +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #14 MSWSOCK.dll!WSPStartup                     +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #15 WS2_32.dll!WSARecv                         +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #16 WS2_32.dll!WSARecv                         +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #17 WS2_32.dll!WSARecv                         +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> #18 WS2_32.dll!htons                           +0x42     (0x71a72e96 <WS2_32.dll+0x2e96>)
> #19 WS2_32.dll!WSALookupServiceBeginW          +0x14e    (0x71a7373e <WS2_32.dll+0x373e>)
> Note: @0:00:04.204 in thread 4076
>
> Potential Error #107: HANDLE LEAK: KERNEL handle 0x00000748 and 0 similar handle(s) were opened but not closed:
> # 0 system call NtCreateEvent
> # 1 KERNEL32.dll!CreateEventW                 +0x40     (0x7c80a77a <KERNEL32.dll+0xa77a>)
> # 2 RPCRT4.dll!I_RpcBCacheFree                +0x1c08   (0x77db829c <RPCRT4.dll+0x829c>)
> # 3 RPCRT4.dll!I_RpcBindingCopy               +0x31a    (0x77dbe0a5 <RPCRT4.dll+0xe0a5>)
> # 4 RPCRT4.dll!I_RpcBindingCopy               +0x2e0    (0x77dbe06b <RPCRT4.dll+0xe06b>)
> # 5 RPCRT4.dll!RpcBindingFromStringBindingW   +0x19     (0x77dbeadf <RPCRT4.dll+0xeadf>)
> # 6 DNSAPI.dll!DnsQuery_W                     +0x584    (0x76f03319 <DNSAPI.dll+0x3319>)
> # 7 RPCRT4.dll!RpcStringBindingComposeW       +0x118    (0x77dbee3a <RPCRT4.dll+0xee3a>)
> # 8 RPCRT4.dll!RpcStringBindingComposeW       +0x145    (0x77dbee67 <RPCRT4.dll+0xee67>)
> # 9 RPCRT4.dll!NdrClientCall2                 +0xbc     (0x77e3458d <RPCRT4.dll+0x8458d>)
> #10 DNSAPI.dll!DnsQueryConfig                 +0x233    (0x76f07ca4 <DNSAPI.dll+0x7ca4>)
> #11 DNSAPI.dll!DnsQueryConfig                 +0x1f4    (0x76f07c65 <DNSAPI.dll+0x7c65>)
> #12 DNSAPI.dll!DnsQueryConfig                 +0x16e    (0x76f07bdf <DNSAPI.dll+0x7bdf>)
> #13 MSWSOCK.dll!SvchostPushServiceGlobals     +0x2e8e   (0x71a1b5c0 <MSWSOCK.dll+0xb5c0>)
> #14 MSWSOCK.dll!WSPStartup                    +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #15 MSWSOCK.dll!WSPStartup                    +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #16 WS2_32.dll!WSARecv                        +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #17 WS2_32.dll!WSARecv                        +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #18 WS2_32.dll!WSARecv                        +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> #19 WS2_32.dll!htons                          +0x42     (0x71a72e96 <WS2_32.dll+0x2e96>)
> Note: @0:00:04.204 in thread 4076
>
> Potential Error #108: HANDLE LEAK: KERNEL handle 0x0000074c and 0 similar handle(s) were opened but not closed:
> # 0 system call NtCreateEvent
> # 1 KERNEL32.dll!CreateEventW              +0x40     (0x7c80a77a <KERNEL32.dll+0xa77a>)
> # 2 RPCRT4.dll!I_RpcBCacheFree             +0x1c08   (0x77db829c <RPCRT4.dll+0x829c>)
> # 3 RPCRT4.dll!I_RpcBCacheAllocate         +0x1613   (0x77dccf55 <RPCRT4.dll+0x1cf55>)
> # 4 RPCRT4.dll!I_RpcBCacheAllocate         +0x1546   (0x77dcce88 <RPCRT4.dll+0x1ce88>)
> # 5 RPCRT4.dll!I_RpcBCacheAllocate         +0xe35    (0x77dcc777 <RPCRT4.dll+0x1c777>)
> # 6 RPCRT4.dll!I_RpcBCacheAllocate         +0x1108   (0x77dcca4a <RPCRT4.dll+0x1ca4a>)
> # 7 DNSAPI.dll!DnsQuery_W                  +0x56d    (0x76f03302 <DNSAPI.dll+0x3302>)
> # 8 RPCRT4.dll!RpcStringBindingComposeW    +0x118    (0x77dbee3a <RPCRT4.dll+0xee3a>)
> # 9 RPCRT4.dll!RpcStringBindingComposeW    +0x145    (0x77dbee67 <RPCRT4.dll+0xee67>)
> #10 RPCRT4.dll!NdrClientCall2              +0xbc     (0x77e3458d <RPCRT4.dll+0x8458d>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x233    (0x76f07ca4 <DNSAPI.dll+0x7ca4>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x1f4    (0x76f07c65 <DNSAPI.dll+0x7c65>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x16e    (0x76f07bdf <DNSAPI.dll+0x7bdf>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2e8e   (0x71a1b5c0 <MSWSOCK.dll+0xb5c0>)
> #15 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #16 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #17 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #18 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #19 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> Note: @0:00:04.204 in thread 4076
>
> Potential Error #109: HANDLE LEAK: KERNEL handle 0x00000750 and 0 similar handle(s) were opened but not closed:
> # 0 system call NtCreateEvent
> # 1 KERNEL32.dll!CreateEventW              +0x40     (0x7c80a77a <KERNEL32.dll+0xa77a>)
> # 2 RPCRT4.dll!I_RpcBCacheAllocate         +0x19fa   (0x77dcd33c <RPCRT4.dll+0x1d33c>)
> # 3 RPCRT4.dll!I_RpcBCacheAllocate         +0x1974   (0x77dcd2b6 <RPCRT4.dll+0x1d2b6>)
> # 4 RPCRT4.dll!I_RpcBCacheAllocate         +0x124a   (0x77dccb8c <RPCRT4.dll+0x1cb8c>)
> # 5 RPCRT4.dll!I_RpcBCacheAllocate         +0x18dc   (0x77dcd21e <RPCRT4.dll+0x1d21e>)
> # 6 RPCRT4.dll!I_RpcBCacheAllocate         +0x1108   (0x77dcca4a <RPCRT4.dll+0x1ca4a>)
> # 7 DNSAPI.dll!DnsQuery_W                  +0x56d    (0x76f03302 <DNSAPI.dll+0x3302>)
> # 8 RPCRT4.dll!RpcStringBindingComposeW    +0x118    (0x77dbee3a <RPCRT4.dll+0xee3a>)
> # 9 RPCRT4.dll!RpcStringBindingComposeW    +0x145    (0x77dbee67 <RPCRT4.dll+0xee67>)
> #10 RPCRT4.dll!NdrClientCall2              +0xbc     (0x77e3458d <RPCRT4.dll+0x8458d>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x233    (0x76f07ca4 <DNSAPI.dll+0x7ca4>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x1f4    (0x76f07c65 <DNSAPI.dll+0x7c65>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x16e    (0x76f07bdf <DNSAPI.dll+0x7bdf>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2e8e   (0x71a1b5c0 <MSWSOCK.dll+0xb5c0>)
> #15 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #16 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #17 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #18 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #19 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> Note: @0:00:04.204 in thread 4076
>
> Potential Error #110: HANDLE LEAK: KERNEL handle 0x00000754 and 0 similar handle(s) were opened but not closed:
> # 0 system call NtCreateEvent
> # 1 KERNEL32.dll!CreateEventW              +0x40     (0x7c80a77a <KERNEL32.dll+0xa77a>)
> # 2 RPCRT4.dll!I_RpcBCacheFree             +0x1c08   (0x77db829c <RPCRT4.dll+0x829c>)
> # 3 RPCRT4.dll!I_RpcBCacheAllocate         +0x14f8   (0x77dcce3a <RPCRT4.dll+0x1ce3a>)
> # 4 RPCRT4.dll!I_RpcBCacheAllocate         +0x1180   (0x77dccac2 <RPCRT4.dll+0x1cac2>)
> # 5 RPCRT4.dll!I_RpcBCacheAllocate         +0x18dc   (0x77dcd21e <RPCRT4.dll+0x1d21e>)
> # 6 RPCRT4.dll!I_RpcBCacheAllocate         +0x1108   (0x77dcca4a <RPCRT4.dll+0x1ca4a>)
> # 7 DNSAPI.dll!DnsQuery_W                  +0x56d    (0x76f03302 <DNSAPI.dll+0x3302>)
> # 8 RPCRT4.dll!RpcStringBindingComposeW    +0x118    (0x77dbee3a <RPCRT4.dll+0xee3a>)
> # 9 RPCRT4.dll!RpcStringBindingComposeW    +0x145    (0x77dbee67 <RPCRT4.dll+0xee67>)
> #10 RPCRT4.dll!NdrClientCall2              +0xbc     (0x77e3458d <RPCRT4.dll+0x8458d>)
> #11 DNSAPI.dll!DnsQueryConfig              +0x233    (0x76f07ca4 <DNSAPI.dll+0x7ca4>)
> #12 DNSAPI.dll!DnsQueryConfig              +0x1f4    (0x76f07c65 <DNSAPI.dll+0x7c65>)
> #13 DNSAPI.dll!DnsQueryConfig              +0x16e    (0x76f07bdf <DNSAPI.dll+0x7bdf>)
> #14 MSWSOCK.dll!SvchostPushServiceGlobals  +0x2e8e   (0x71a1b5c0 <MSWSOCK.dll+0xb5c0>)
> #15 MSWSOCK.dll!WSPStartup                 +0x532    (0x71a170ce <MSWSOCK.dll+0x70ce>)
> #16 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> #17 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> #18 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> #19 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> Note: @0:00:04.204 in thread 4076
>
> Potential Error #111: HANDLE LEAK: KERNEL handle 0x00000758 and 0 similar handle(s) were opened but not closed:
> # 0 system call NtCreateEvent
> # 1 MSWSOCK.dll!?                          +0x0      (0x71a14256 <MSWSOCK.dll+0x4256>)
> # 2 MSWSOCK.dll!SvchostPushServiceGlobals  +0x361a   (0x71a1bd4c <MSWSOCK.dll+0xbd4c>)
> # 3 MSWSOCK.dll!WSPStartup                 +0x670    (0x71a1720c <MSWSOCK.dll+0x720c>)
> # 4 WS2_32.dll!WSARecv                     +0x218    (0x71a74ece <WS2_32.dll+0x4ece>)
> # 5 WS2_32.dll!WSARecv                     +0x140    (0x71a74df6 <WS2_32.dll+0x4df6>)
> # 6 WS2_32.dll!WSARecv                     +0xdb     (0x71a74d91 <WS2_32.dll+0x4d91>)
> # 7 WS2_32.dll!htons                       +0x42     (0x71a72e96 <WS2_32.dll+0x2e96>)
> # 8 WS2_32.dll!WSALookupServiceBeginW      +0x14e    (0x71a7373e <WS2_32.dll+0x373e>)
> # 9 WS2_32.dll!WSALookupServiceBeginW      +0x83     (0x71a73673 <WS2_32.dll+0x3673>)
> #10 WS2_32.dll!WSALookupServiceNextA       +0x676    (0x71a76104 <WS2_32.dll+0x6104>)
> #11 WS2_32.dll!WSALookupServiceNextA       +0x505    (0x71a75f93 <WS2_32.dll+0x5f93>)
> #12 WS2_32.dll!WSALookupServiceNextA       +0x3ca    (0x71a75e58 <WS2_32.dll+0x5e58>)
> #13 WS2_32.dll!WSALookupServiceNextA       +0x34e    (0x71a75ddc <WS2_32.dll+0x5ddc>)
> #14 WS2_32.dll!getaddrinfo                 +0x5a     (0x71a72aca <WS2_32.dll+0x2aca>)
> #15 LIBPQ.dll!pqsignal                     +0x360    (0x10017b61 <LIBPQ.dll+0x17b61>)
> #16 LIBPQ.dll!PQpingParams                 +0xe9b    (0x10006bfc <LIBPQ.dll+0x6bfc>)
> #17 LIBPQ.dll!PQconnectdb                  +0x35     (0x10005096 <LIBPQ.dll+0x5096>)
> #18 main                                    [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:04.204 in thread 4076
>
> Potential Error #112: HANDLE LEAK: KERNEL handle 0x0000075c and 0 similar handle(s) were opened but not closed:
> # 0 system call NtOpenKey
> # 1 ADVAPI32.dll!?                     +0x0      (0x77f56a39 <ADVAPI32.dll+0x6a39>)
> # 2 ADVAPI32.dll!RegOpenKeyExA         +0xcf     (0x77f57912 <ADVAPI32.dll+0x7912>)
> # 3 WS2_32.dll!WSCEnumProtocols        +0xc64    (0x71a787c6 <WS2_32.dll+0x87c6>)
> # 4 WS2_32.dll!WSCEnumProtocols        +0x74d    (0x71a782af <WS2_32.dll+0x82af>)
> # 5 WS2_32.dll!WSCEnumProtocols        +0x43d    (0x71a77f9f <WS2_32.dll+0x7f9f>)
> # 6 WS2_32.dll!WSCEnumProtocols        +0x34d    (0x71a77eaf <WS2_32.dll+0x7eaf>)
> # 7 LIBPQ.dll!PQpingParams             +0x1174   (0x10006ed5 <LIBPQ.dll+0x6ed5>)
> # 8 LIBPQ.dll!PQconnectdb              +0x8      (0x10005069 <LIBPQ.dll+0x5069>)
> # 9 main                                [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:04.204 in thread 4076
>
> Potential Error #113: HANDLE LEAK: KERNEL handle 0x00000760 and 0 similar handle(s) were opened but not closed:
> # 0 system call NtCreateEvent
> # 1 KERNEL32.dll!CreateEventW              +0x40     (0x7c80a77a <KERNEL32.dll+0xa77a>)
> # 2 KERNEL32.dll!CreateEventA              +0x21     (0x7c8308bf <KERNEL32.dll+0x308bf>)
> # 3 WS2_32.dll!WSCEnumProtocols            +0x407    (0x71a77f69 <WS2_32.dll+0x7f69>)
> # 4 WS2_32.dll!WSCEnumProtocols            +0x34d    (0x71a77eaf <WS2_32.dll+0x7eaf>)
> # 5 LIBPQ.dll!PQpingParams                 +0x1174   (0x10006ed5 <LIBPQ.dll+0x6ed5>)
> # 6 LIBPQ.dll!PQconnectdb                  +0x8      (0x10005069 <LIBPQ.dll+0x5069>)
> # 7 main                                    [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:04.204 in thread 4076
>
> Potential Error #114: HANDLE LEAK: KERNEL handle 0x00000764 and 0 similar handle(s) were opened but not closed:
> # 0 system call NtOpenKey
> # 1 ADVAPI32.dll!?                     +0x0      (0x77f56a39 <ADVAPI32.dll+0x6a39>)
> # 2 ADVAPI32.dll!RegOpenKeyExA         +0xcf     (0x77f57912 <ADVAPI32.dll+0x7912>)
> # 3 WS2_32.dll!WSCEnumProtocols        +0x562    (0x71a780c4 <WS2_32.dll+0x80c4>)
> # 4 WS2_32.dll!WSCEnumProtocols        +0x4a7    (0x71a78009 <WS2_32.dll+0x8009>)
> # 5 WS2_32.dll!WSCEnumProtocols        +0x3f9    (0x71a77f5b <WS2_32.dll+0x7f5b>)
> # 6 WS2_32.dll!WSCEnumProtocols        +0x34d    (0x71a77eaf <WS2_32.dll+0x7eaf>)
> # 7 LIBPQ.dll!PQpingParams             +0x1174   (0x10006ed5 <LIBPQ.dll+0x6ed5>)
> # 8 LIBPQ.dll!PQconnectdb              +0x8      (0x10005069 <LIBPQ.dll+0x5069>)
> # 9 main                                [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:04.204 in thread 4076
>
> Potential Error #115: HANDLE LEAK: KERNEL handle 0x00000768 and 0 similar handle(s) were opened but not closed:
> # 0 system call NtCreateEvent
> # 1 KERNEL32.dll!CreateEventW              +0x40     (0x7c80a77a <KERNEL32.dll+0xa77a>)
> # 2 KERNEL32.dll!CreateEventA              +0x21     (0x7c8308bf <KERNEL32.dll+0x308bf>)
> # 3 WS2_32.dll!WSCEnumProtocols            +0x3bf    (0x71a77f21 <WS2_32.dll+0x7f21>)
> # 4 WS2_32.dll!WSCEnumProtocols            +0x34d    (0x71a77eaf <WS2_32.dll+0x7eaf>)
> # 5 LIBPQ.dll!PQpingParams                 +0x1174   (0x10006ed5 <LIBPQ.dll+0x6ed5>)
> # 6 LIBPQ.dll!PQconnectdb                  +0x8      (0x10005069 <LIBPQ.dll+0x5069>)
> # 7 main                                    [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:04.204 in thread 4076
>
> Potential Error #116: HANDLE LEAK: KERNEL handle 0x00000770 and 0 similar handle(s) were opened but not closed:
> # 0 system call NtDuplicateObject
> # 1 KERNEL32.dll!DuplicateHandle               +0x64     (0x7c80def3 <KERNEL32.dll+0xdef3>)
> # 2 WS2HELP.dll!WahOpenCurrentThread           +0x41     (0x71a615bf <WS2HELP.dll+0x15bf>)
> # 3 WS2_32.dll!FreeAddrInfoW                   +0xe9     (0x71a72bf5 <WS2_32.dll+0x2bf5>)
> # 4 WS2_32.dll!FreeAddrInfoW                   +0x86     (0x71a72b92 <WS2_32.dll+0x2b92>)
> # 5 WS2_32.dll!WSCEnumProtocols                +0x31c    (0x71a77e7e <WS2_32.dll+0x7e7e>)
> # 6 LIBPQ.dll!PQpingParams                     +0x1174   (0x10006ed5 <LIBPQ.dll+0x6ed5>)
> # 7 LIBPQ.dll!PQconnectdb                      +0x8      (0x10005069 <LIBPQ.dll+0x5069>)
> # 8 main                                        [c:\usr\src\tests\dbd\bug_13980.c:18]
> Note: @0:00:04.204 in thread 4076
>
> DUPLICATE POTENTIAL ERROR COUNTS:
>     Potential Error #   1:      3
>     Potential Error #   3:     64
>     Potential Error #   4:     64
>     Potential Error #   5:     64
>     Potential Error #   6:     64
>     Potential Error #   7:      2
>     Potential Error #   8:      7
>     Potential Error #   9:     64
>     Potential Error #  10:     64
>     Potential Error #  11:     64
>     Potential Error #  12:     64
>     Potential Error #  13:      2
>     Potential Error #  14:      2
>     Potential Error #  18:      3
>     Potential Error #  26:      2
>     Potential Error #  30:      2
>     Potential Error #  34:      4
>     Potential Error #  35:      2
>     Potential Error #  36:      2
>     Potential Error #  37:      2
>     Potential Error #  38:      2
>     Potential Error #  39:      2
>     Potential Error #  40:      2
>     Potential Error #  41:      8
>     Potential Error #  42:      4
>     Potential Error #  43:      4
>     Potential Error #  44:      4
>     Potential Error #  45:      7
>     Potential Error #  48:     39
>     Potential Error #  53:     64
>     Potential Error #  54:     64
>     Potential Error #  55:     64
>     Potential Error #  56:     64
>     Potential Error #  57:      2
>     Potential Error #  60:     64
>     Potential Error #  61:     64
>     Potential Error #  62:     64
>     Potential Error #  63:     64
>     Potential Error #  64:      2
>     Potential Error #  65:      2
>     Potential Error #  69:      3
>     Potential Error #  77:      2
>     Potential Error #  81:      2
>     Potential Error #  85:      4
>     Potential Error #  86:      2
>     Potential Error #  87:      7
>     Potential Error #  90:     39
>
> NO POTENTIAL ERRORS FOUND:
>       0 unique,     0 total potential unaddressable access(es)
>      99 unique,  1246 total potential uninitialized access(es)
>       0 unique,     0 total potential invalid heap argument(s)
>       0 unique,     0 total potential GDI usage error(s)
>      14 unique,    14 total potential handle leak(s)
>       0 unique,     0 total potential warning(s)
>       3 unique,     3 total,   1624 byte(s) of potential leak(s)
>       0 unique,     0 total,      0 byte(s) of potential possible leak(s)
> Details: c:\tmp\DrMemory-bug13980.exe.2544.000\potential_errors.txt



--
Álvaro Herrera

В списке pgsql-bugs по дате отправления:

Предыдущее
От: Ranier VF
Дата:
Сообщение: Re: BUG #13980: UNINITIALIZED READ
Следующее
От: Brian Ghidinelli
Дата:
Сообщение: Re: BUG #13970: Vacuum hangs on particular table; cannot be terminated - requires `kill -QUIT pid` [WORKAROUND]