Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/dtable.cc')
-rw-r--r--winsup/cygwin/dtable.cc5
1 files changed, 3 insertions, 2 deletions
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
{