1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

s3: Fix Coverity ID 2148, FORWARD_NULL

Further down we unconditionally reference *info
This commit is contained in:
Volker Lendecke 2011-03-16 21:21:17 +01:00
parent 2581cb7ada
commit c58eb1f8c5

View File

@ -1160,9 +1160,8 @@ wbcErr wbcCredentialCache(struct wbcCredentialCacheParams *params,
ZERO_STRUCT(request);
ZERO_STRUCT(response);
if (info != NULL) {
*info = NULL;
}
*info = NULL;
if (error != NULL) {
*error = NULL;
}