Skip to content

Commit

Permalink
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel…
Browse files Browse the repository at this point in the history
…/git/jmorris/selinux-2.6

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/selinux-2.6:
  selinux: fix memory leak in netlabel code
  • Loading branch information
Linus Torvalds committed Jan 22, 2008
2 parents f290fc3 + 45c950e commit 8b85eaa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 5 additions & 2 deletions security/selinux/netlabel.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,20 @@ static int selinux_netlbl_sock_setsid(struct sock *sk, u32 sid)
struct sk_security_struct *sksec = sk->sk_security;
struct netlbl_lsm_secattr secattr;

netlbl_secattr_init(&secattr);

rc = security_netlbl_sid_to_secattr(sid, &secattr);
if (rc != 0)
return rc;

goto sock_setsid_return;
rc = netlbl_sock_setattr(sk, &secattr);
if (rc == 0) {
spin_lock_bh(&sksec->nlbl_lock);
sksec->nlbl_state = NLBL_LABELED;
spin_unlock_bh(&sksec->nlbl_lock);
}

sock_setsid_return:
netlbl_secattr_destroy(&secattr);
return rc;
}

Expand Down
2 changes: 0 additions & 2 deletions security/selinux/ss/services.c
Original file line number Diff line number Diff line change
Expand Up @@ -2606,8 +2606,6 @@ int security_netlbl_sid_to_secattr(u32 sid, struct netlbl_lsm_secattr *secattr)
int rc = -ENOENT;
struct context *ctx;

netlbl_secattr_init(secattr);

if (!ss_initialized)
return 0;

Expand Down

0 comments on commit 8b85eaa

Please sign in to comment.