You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cl.exe -Zi foo4.cc kernel32.lib
#include <windows.h>
int main()
{
BOOL ret = WaitNamedPipeW(L"\\\\.\\pipe\\doesnotexist", 1);
return ret;
}
Running it with "drmemory.exe foo4.exe" on Windows 7:
Dr. Memory version 1.9.0 build 4 built on Oct 2 2015 13:13:14
Dr. Memory results for pid 3880: "foo4.exe"
Application cmdline: "foo4.exe"
Recorded 116 suppression(s) from default C:\Users\ms\DrMemory-Windows-1.9.0-4\bin\suppress-default.txt
Error #1: UNINITIALIZED READ: reading 0x00707a95-0x00707a96 1 byte(s) within 0x00707a88-0x00707aae
#0 system call NtFsControlFile parameter #6
#1 KERNELBASE.dll!WaitNamedPipeW +0x2c6 (0x753483cc <KERNELBASE.dll+0x83cc>)
#2 main [c:\cygwin\tmp\foo4.cc:7]
Note: @0:00:00.561 in thread 3904
Running it with "-light" reports no error.
"-debug -dr_debug -pause_at_assert" does not print anything interesting.
The text was updated successfully, but these errors were encountered:
int main()
{
BOOL ret = WaitNamedPipeW(L"\.\pipe\doesnotexist", 1);
return ret;
}
Running it with "drmemory.exe foo4.exe" on Windows 7:
Dr. Memory version 1.9.0 build 4 built on Oct 2 2015 13:13:14
Dr. Memory results for pid 3880: "foo4.exe"
Application cmdline: "foo4.exe"
Recorded 116 suppression(s) from default C:\Users\ms\DrMemory-Windows-1.9.0-4\bin\suppress-default.txt
Error #1: UNINITIALIZED READ: reading 0x00707a95-0x00707a96 1 byte(s) within 0x00707a88-0x00707aae
DrMemory 1.9.0-4 reports a UNINITIALIZED READ on this call, despite the 2 in-parameters being constants:
https://msdn.microsoft.com/en-us/library/windows/desktop/aa365800%28v=vs.120%29.aspx
Running it with "drmemory.exe foo4.exe" on Windows 7:
Running it with "-light" reports no error.
"-debug -dr_debug -pause_at_assert" does not print anything interesting.
The text was updated successfully, but these errors were encountered: