* fhandler_console.cc (fhandler_console::open_shared_console): Don't zero

handle to open_shared since it is supposed to be an input.
(enum_windows): Set handle input to open_shared to NULL since it does not
represent any previously opened shared region.
* shared.cc (open_shared): Tweak debugging output.
This commit is contained in:
Christopher Faylor
2011-06-05 02:10:31 +00:00
parent 665f9a59a4
commit d5cb221b85
3 changed files with 10 additions and 3 deletions

View File

@ -82,7 +82,6 @@ fhandler_console::open_shared_console (HWND hw, HANDLE& h, bool& create)
{
wchar_t namebuf[(sizeof "XXXXXXXXXXXXXXXXXX-consNNNNNNNNNN")];
__small_swprintf (namebuf, L"%S-cons%p", &installation_key, hw);
h = NULL;
shared_locations m = create ? SH_JUSTCREATE: SH_JUSTOPEN;
console_state *res = (console_state *)
@ -108,7 +107,7 @@ enum_windows (HWND hw, LPARAM lp)
console_unit *this1 = (console_unit *) lp;
if (hw == this1->me)
return TRUE;
HANDLE h;
HANDLE h = NULL;
fhandler_console::console_state *cs;
if ((cs = fhandler_console::open_shared_console (hw, h)))
{