Removed superfluous if statement in update.c:453
Check for NULL not necessary here
This commit is contained in:

committed by
Max Kellermann

parent
0aee49bdf8
commit
f31c371fbd
@ -450,9 +450,6 @@ update_container_file( struct directory* directory,
|
||||
return true;
|
||||
}
|
||||
|
||||
// contdir doesn't yet exist
|
||||
if (contdir == NULL)
|
||||
{
|
||||
contdir = make_subdir(directory, name);
|
||||
contdir->mtime = st->st_mtime;
|
||||
contdir->device = DEVICE_CONTAINER;
|
||||
@ -484,9 +481,6 @@ update_container_file( struct directory* directory,
|
||||
else
|
||||
return true;
|
||||
}
|
||||
// something went wrong, so return true to return update_regular_file
|
||||
return true;
|
||||
}
|
||||
|
||||
static void
|
||||
update_regular_file(struct directory *directory,
|
||||
|
Reference in New Issue
Block a user