mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 19:53:59 +08:00
cifs: Use BUILD_BUG_ON to validate uids and gids are the same size
The assumption that sizeof(uid_t) is the same as sizeof(gid_t) is completely reasonable but since we can verify the condition at compile time. Cc: Steve French <smfrench@gmail.com> Signed-off-by: "Eric W. Biederman" <ebiederm@xmission.com>
This commit is contained in:
parent
46bbc25f9f
commit
355958f289
@ -297,6 +297,7 @@ sid_to_id(struct cifs_sb_info *cifs_sb, struct cifs_sid *psid,
|
|||||||
* probably a safe assumption but might be better to check based on
|
* probably a safe assumption but might be better to check based on
|
||||||
* sidtype.
|
* sidtype.
|
||||||
*/
|
*/
|
||||||
|
BUILD_BUG_ON(sizeof(uid_t) != sizeof(gid_t));
|
||||||
if (sidkey->datalen != sizeof(uid_t)) {
|
if (sidkey->datalen != sizeof(uid_t)) {
|
||||||
rc = -EIO;
|
rc = -EIO;
|
||||||
cFYI(1, "%s: Downcall contained malformed key "
|
cFYI(1, "%s: Downcall contained malformed key "
|
||||||
|
Loading…
Reference in New Issue
Block a user