From 1183d7fb13e9ad0fcd02b8c96c8d413b448b0ae1 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Mon, 6 Jul 2009 15:11:30 +0000 Subject: * dtable.cc (handle_to_fn): Detect failing NtQueryObject. --- winsup/cygwin/dtable.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'winsup/cygwin/dtable.cc') diff --git a/winsup/cygwin/dtable.cc b/winsup/cygwin/dtable.cc index 08b04f091..22303dfde 100644 --- a/winsup/cygwin/dtable.cc +++ b/winsup/cygwin/dtable.cc @@ -891,8 +891,9 @@ handle_to_fn (HANDLE h, char *posix_fn) WCHAR *maxmatchdos = NULL; int maxmatchlen = 0; - NtQueryObject (h, ObjectNameInformation, &dummy_oni, sizeof (dummy_oni), &len); - if (!len) + NTSTATUS status = NtQueryObject (h, ObjectNameInformation, &dummy_oni, + sizeof (dummy_oni), &len); + if (!NT_SUCCESS (status) || !len) debug_printf ("NtQueryObject failed 1"); else { -- cgit v1.2.3