1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-01 04:58:35 +03:00

s3: Fix bug 7578

Uninitialized variable read in _wbint_SetHWM
This commit is contained in:
Justin Maggard 2010-07-27 08:42:04 +02:00 committed by Volker Lendecke
parent 75db0f0a63
commit 4f01159a31

View File

@ -612,7 +612,7 @@ NTSTATUS _wbint_SetHWM(pipes_struct *p, struct wbint_SetHWM *r)
id.id = r->in.id;
switch (id.type) {
switch (r->in.type) {
case WBINT_ID_TYPE_UID:
id.type = ID_TYPE_UID;
status = idmap_set_uid_hwm(&id);