s3: Remove a pointless if-statement
authorVolker Lendecke <vl@samba.org>
Fri, 5 Feb 2010 14:53:19 +0000 (15:53 +0100)
committerVolker Lendecke <vl@samba.org>
Fri, 5 Feb 2010 20:11:17 +0000 (21:11 +0100)
source3/passdb/machine_sid.c

index 5b7abfe43812d397f3d40333b5f2ef91ce25064c..aee9acc99367df1915780fad63d3dc853620c4f2 100644 (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;
        }