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

Survive a samdump with an alias that has no description

Volker
This commit is contained in:
Volker Lendecke
-
parent 7798c7ee1a
commit 5af417a6ba

View File

@@ -2277,9 +2277,12 @@ static BOOL net_io_sam_alias_info(const char *desc, SAM_ALIAS_INFO * info,
if (!smb_io_buffer4("buf_sec_desc", &info->buf_sec_desc,
info->hdr_sec_desc.buffer, ps, depth))
return False;
if (!smb_io_unistr2("uni_als_desc", &info->uni_als_desc,
info->hdr_als_name.buffer, ps, depth))
return False;
if (info->hdr_als_desc.buffer != 0) {
if (!smb_io_unistr2("uni_als_desc", &info->uni_als_desc,
info->hdr_als_name.buffer, ps, depth))
return False;
}
return True;
}