diff options
author | Christian Göttsche <cgzones@googlemail.com> | 2023-05-11 15:31:47 +0300 |
---|---|---|
committer | Paul Moore <paul@paul-moore.com> | 2023-05-18 20:38:39 +0300 |
commit | ed99135f7621459ef873991115372ba1afe88a04 (patch) | |
tree | 5344b34150dced9a882f403070b9990678a0416e /security | |
parent | 85c3222dddc6697dc7513623983a2ba748ba710e (diff) | |
download | linux-ed99135f7621459ef873991115372ba1afe88a04.tar.xz |
selinux: keep context struct members in sync
Commit 53f3517ae087 ("selinux: do not leave dangling pointer behind")
reset the `str` field of the `context` struct in an OOM error branch.
In this struct the fields `str` and `len` are coupled and should be kept
in sync. Set the length to zero according to the string be set to NULL.
Fixes: 53f3517ae087 ("selinux: do not leave dangling pointer behind")
Signed-off-by: Christian Göttsche <cgzones@googlemail.com>
Signed-off-by: Paul Moore <paul@paul-moore.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/selinux/ss/context.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/security/selinux/ss/context.h b/security/selinux/ss/context.h index 44179977f434..aed704b8c642 100644 --- a/security/selinux/ss/context.h +++ b/security/selinux/ss/context.h @@ -168,6 +168,7 @@ static inline int context_cpy(struct context *dst, const struct context *src) if (rc) { kfree(dst->str); dst->str = NULL; + dst->len = 0; return rc; } return 0; |