chcon: remove redundant ifs: if(p) free(p)

This commit is contained in:
Denis Vlasenko 2007-03-12 19:49:07 +00:00
parent 39c651e909
commit b5c33b10b9

View File

@ -97,11 +97,8 @@ static int change_filedir_context(const char *fname, struct stat *stbuf, void *u
rc = TRUE;
}
skip:
/* FIXME: aren't these work ok on NULL ptr? Remove if() then */
if (context)
context_free(context);
if (file_context)
freecon(file_context);
context_free(context);
freecon(file_context);
return rc;
}