* exception.h (class exception): Remove unnecessary #ifdef.

* uinfo.cc (client_request_pwdgrp::client_request_pwdgrp): Fix length
	counter to include trailing NUL.

	* sec_auth.cc (get_user_groups): Add experimental exception handler.
	(get_user_local_groups): Ditto.
This commit is contained in:
Corinna Vinschen
2014-09-05 11:47:33 +00:00
parent acc511d184
commit bea3ef947a
4 changed files with 28 additions and 11 deletions

View File

@ -126,17 +126,15 @@ public:
~exception () __attribute__ ((always_inline)) { _except_list = save; }
};
#else
#else /* __x86_64__ */
#define exception_list void
typedef struct _DISPATCHER_CONTEXT *PDISPATCHER_CONTEXT;
class exception
{
#ifdef __x86_64__
static EXCEPTION_DISPOSITION myfault (EXCEPTION_RECORD *, exception_list *,
CONTEXT *, PDISPATCHER_CONTEXT);
#endif
static EXCEPTION_DISPOSITION handle (EXCEPTION_RECORD *, exception_list *,
CONTEXT *, PDISPATCHER_CONTEXT);
public:
@ -162,7 +160,7 @@ public:
}
};
#endif /* !__x86_64 */
#endif /* !__x86_64__ */
class cygwin_exception
{