mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
Fix an implicit cast warning.
Michael
(This used to be commit 4ab3b23a63
)
This commit is contained in:
parent
68be9a8200
commit
3f437f681a
@ -684,7 +684,7 @@ static char *validate_group(char *group, DATA_BLOB password,int snum)
|
||||
}
|
||||
list_len++;
|
||||
|
||||
member_list = SMB_MALLOC(list_len);
|
||||
member_list = (char *)SMB_MALLOC(list_len);
|
||||
if (!member_list) {
|
||||
endgrent();
|
||||
return NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user