aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-09-14 15:41:30 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-09-14 15:44:13 +0300
commit09961819d8c81ce1873787925722ffc5c18af0d2 (patch)
tree55fdf1860cbdfc855055182b0f32c6c52e322b02 /include
parenttest_lib: test -> test_ns (diff)
downloadwinapi-debug-09961819d8c81ce1873787925722ffc5c18af0d2.tar.gz
winapi-debug-09961819d8c81ce1873787925722ffc5c18af0d2.zip
DbgHelp: fix move ctor
Diffstat (limited to 'include')
-rw-r--r--include/pdb/dbghelp.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/pdb/dbghelp.hpp b/include/pdb/dbghelp.hpp
index 328df2d..0026bfb 100644
--- a/include/pdb/dbghelp.hpp
+++ b/include/pdb/dbghelp.hpp
@@ -51,7 +51,7 @@ private:
void close();
- HANDLE id = GetCurrentProcess();
+ HANDLE id = NULL;
DbgHelp(const DbgHelp&) = delete;
};