Skip to content

Commit aeabe1e

Browse files
committed
Merge tag 'objtool_urgent_for_v5.17_rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull objtool fix from Borislav Petkov: "Fix a potential truncated string warning triggered by gcc12" * tag 'objtool_urgent_for_v5.17_rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: objtool: Fix truncated string warning
2 parents b72e40b + 8288028 commit aeabe1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/objtool/check.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2854,7 +2854,7 @@ static inline bool func_uaccess_safe(struct symbol *func)
28542854

28552855
static inline const char *call_dest_name(struct instruction *insn)
28562856
{
2857-
static char pvname[16];
2857+
static char pvname[19];
28582858
struct reloc *rel;
28592859
int idx;
28602860

0 commit comments

Comments
 (0)