Commit f31c371f authored by Jochen Keil's avatar Jochen Keil Committed by Max Kellermann

Removed superfluous if statement in update.c:453

Check for NULL not necessary here
parent 0aee49bd
...@@ -450,9 +450,6 @@ update_container_file( struct directory* directory, ...@@ -450,9 +450,6 @@ update_container_file( struct directory* directory,
return true; return true;
} }
// contdir doesn't yet exist
if (contdir == NULL)
{
contdir = make_subdir(directory, name); contdir = make_subdir(directory, name);
contdir->mtime = st->st_mtime; contdir->mtime = st->st_mtime;
contdir->device = DEVICE_CONTAINER; contdir->device = DEVICE_CONTAINER;
...@@ -483,9 +480,6 @@ update_container_file( struct directory* directory, ...@@ -483,9 +480,6 @@ update_container_file( struct directory* directory,
} }
else else
return true; return true;
}
// something went wrong, so return true to return update_regular_file
return true;
} }
static void static void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment