]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
lib/bootconfig: use size_t for key length tracking in xbc_verify_tree()
authorJosh Law <objecting@objecting.org>
Wed, 18 Mar 2026 15:59:18 +0000 (15:59 +0000)
committerMasami Hiramatsu (Google) <mhiramat@kernel.org>
Wed, 18 Mar 2026 23:44:58 +0000 (08:44 +0900)
commit05213e4b10b9bd2e121d3e73428404b4f920dd9a
tree4804e688849b06d7a7c2c5a26b605a3213373ebb
parent0f2199904188abd5477a6517a9ce525bdc2dc01d
lib/bootconfig: use size_t for key length tracking in xbc_verify_tree()

  lib/bootconfig.c:839:24: warning: conversion from 'size_t' to 'int'
  may change value [-Wconversion]
  lib/bootconfig.c:860:32: warning: conversion from 'size_t' to 'int'
  may change value [-Wconversion]
  lib/bootconfig.c:860:29: warning: conversion to 'size_t' from 'int'
  may change the sign of the result [-Wsign-conversion]

The key length variables len and wlen accumulate strlen() results but
were declared as int, causing truncation and sign-conversion warnings.
Change both to size_t to match the strlen() return type and avoid
mixed-sign arithmetic.

Link: https://lore.kernel.org/all/20260318155919.78168-13-objecting@objecting.org/
Signed-off-by: Josh Law <objecting@objecting.org>
Signed-off-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
lib/bootconfig.c