diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-09-14 15:41:30 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-09-14 15:44:13 +0300 |
commit | 09961819d8c81ce1873787925722ffc5c18af0d2 (patch) | |
tree | 55fdf1860cbdfc855055182b0f32c6c52e322b02 /include/pdb | |
parent | test_lib: test -> test_ns (diff) | |
download | winapi-debug-09961819d8c81ce1873787925722ffc5c18af0d2.tar.gz winapi-debug-09961819d8c81ce1873787925722ffc5c18af0d2.zip |
DbgHelp: fix move ctor
Diffstat (limited to 'include/pdb')
-rw-r--r-- | include/pdb/dbghelp.hpp | 2 |
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; }; |