mount-setup: drop pointless zero initialization

This commit is contained in:
Lennart Poettering 2020-08-19 17:47:32 +02:00
parent 3196e42393
commit 4428c49db9
1 changed files with 1 additions and 1 deletions

View File

@ -480,7 +480,7 @@ static int relabel_extra(void) {
#endif
int mount_setup(bool loaded_policy, bool leave_propagation) {
int r = 0;
int r;
r = mount_points_setup(ELEMENTSOF(mount_table), loaded_policy);
if (r < 0)