diff options
| -rw-r--r-- | nsswitch/libwbclient/wbc_util.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/nsswitch/libwbclient/wbc_util.c b/nsswitch/libwbclient/wbc_util.c index fcb7671d83..7f3b61bb25 100644 --- a/nsswitch/libwbclient/wbc_util.c +++ b/nsswitch/libwbclient/wbc_util.c @@ -407,7 +407,7 @@ wbcErr wbcListTrusts(struct wbcDomainInfo **domains, size_t *num_domains)  	p = (char *)response.extra_data.data; -	if (strlen(p) == 0) { +	if ((p == NULL) || (strlen(p) == 0)) {  		/* We should always at least get back our  		   own SAM domain */  | 
