Procházet zdrojové kódy

selinux: remove a useless return

The last return is unreachable, remove the 'return'
in default, let it fall through.

Signed-off-by: WANG Cong <amwang@redhat.com>
Acked-by: Eric Paris <eparis@redhat.com>
Signed-off-by: James Morris <jmorris@namei.org>
Amerigo Wang před 15 roky
rodič
revize
08e3daff21
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      security/selinux/ss/mls.c

+ 2 - 2
security/selinux/ss/mls.c

@@ -541,8 +541,8 @@ int mls_compute_sid(struct context *scontext,
 	case AVTAB_MEMBER:
 	case AVTAB_MEMBER:
 		/* Use the process effective MLS attributes. */
 		/* Use the process effective MLS attributes. */
 		return mls_context_cpy_low(newcontext, scontext);
 		return mls_context_cpy_low(newcontext, scontext);
-	default:
-		return -EINVAL;
+
+	/* fall through */
 	}
 	}
 	return -EINVAL;
 	return -EINVAL;
 }
 }