mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
s3: Remove a pointless if-statement
This commit is contained in:
parent
dcc850e3b3
commit
3ea602a7c3
@ -44,7 +44,7 @@ static bool read_sid_from_file(const char *fname, DOM_SID *sid)
|
||||
lines = file_lines_load(fname, &numlines,0, NULL);
|
||||
|
||||
if (!lines || numlines < 1) {
|
||||
if (lines) TALLOC_FREE(lines);
|
||||
TALLOC_FREE(lines);
|
||||
return False;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user