diff options
| author | Stephen Smalley <sds@tycho.nsa.gov> | 2007-02-26 12:02:34 -0500 |
|---|---|---|
| committer | James Morris <jmorris@namei.org> | 2007-02-26 14:43:15 -0500 |
| commit | 4f4acf3a478d5cada688f336f2229ab580f56113 (patch) | |
| tree | ed549b4f079f8aaefaa47da1027eaf110a7c3013 /security | |
| parent | fadcdb451632d32d7c0d4c71df9ac2d3b7ae2348 (diff) | |
Always initialize scontext and scontext_len
Always initialize *scontext and *scontext_len in security_sid_to_context.
(via http://lkml.org/lkml/2007/2/23/135)
Signed-off-by: Stephen Smalley <sds@tycho.nsa.gov>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'security')
| -rw-r--r-- | security/selinux/ss/services.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/security/selinux/ss/services.c b/security/selinux/ss/services.c index ca9154dc5d82..1e52356664d6 100644 --- a/security/selinux/ss/services.c +++ b/security/selinux/ss/services.c | |||
| @@ -609,6 +609,9 @@ int security_sid_to_context(u32 sid, char **scontext, u32 *scontext_len) | |||
| 609 | struct context *context; | 609 | struct context *context; |
| 610 | int rc = 0; | 610 | int rc = 0; |
| 611 | 611 | ||
| 612 | *scontext = NULL; | ||
| 613 | *scontext_len = 0; | ||
| 614 | |||
| 612 | if (!ss_initialized) { | 615 | if (!ss_initialized) { |
| 613 | if (sid <= SECINITSID_NUM) { | 616 | if (sid <= SECINITSID_NUM) { |
| 614 | char *scontextp; | 617 | char *scontextp; |
