1
0
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:
Volker Lendecke 2010-02-05 15:53:19 +01:00
parent dcc850e3b3
commit 3ea602a7c3

View File

@ -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;
}