nsproxy: Remove unnecessary ‘0’ values from ret
Commit Message
The ret variable can be defined without assigning a value, as it is
assigned before use.
Signed-off-by: Li kunyu <kunyu@nfschina.com>
---
kernel/nsproxy.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -374,12 +374,12 @@ static inline int validate_ns(struct nsset *nsset, struct ns_common *ns)
*/
static int validate_nsset(struct nsset *nsset, struct pid *pid)
{
- int ret = 0;
unsigned flags = nsset->flags;
struct user_namespace *user_ns = NULL;
struct pid_namespace *pid_ns = NULL;
struct nsproxy *nsp;
struct task_struct *tsk;
+ int ret;
/* Take a "snapshot" of the target task's namespaces. */
rcu_read_lock();