1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s3:winbindd fix a compiler warning

about result being potentially uninitialized
This commit is contained in:
Christian Ambach 2012-09-22 13:32:00 -07:00
parent f339c1fd91
commit 1b5256c184

View File

@ -223,7 +223,7 @@ NTSTATUS winbindd_sids_to_xids_recv(struct tevent_req *req,
struct winbindd_sids_to_xids_state *state = tevent_req_data(
req, struct winbindd_sids_to_xids_state);
NTSTATUS status;
char *result;
char *result = NULL;
uint32_t i, num_non_cached;
if (tevent_req_is_nterror(req, &status)) {