core: remove unused variables

This commit is contained in:
Ronny Chevalier 2014-11-30 02:33:35 +01:00
parent 82b1412852
commit 4e2744fcb5
2 changed files with 3 additions and 6 deletions

View file

@ -2487,7 +2487,6 @@ int config_parse_address_families(
void *userdata) {
ExecContext *c = data;
Unit *u = userdata;
bool invert = false;
const char *word, *state;
size_t l;
@ -2496,7 +2495,6 @@ int config_parse_address_families(
assert(filename);
assert(lvalue);
assert(rvalue);
assert(u);
if (isempty(rvalue)) {
/* Empty assignment resets the list */

View file

@ -382,15 +382,14 @@ static int scope_deserialize_item(Unit *u, const char *key, const char *value, F
}
static bool scope_check_gc(Unit *u) {
Scope *s = SCOPE(u);
int r;
assert(s);
assert(u);
/* Never clean up scopes that still have a process around,
* even if the scope is formally dead. */
if (u->cgroup_path) {
int r;
r = cg_is_empty_recursive(SYSTEMD_CGROUP_CONTROLLER, u->cgroup_path, true);
if (r <= 0)
return true;