Skip to content

Commit

Permalink
Merge tag 'objtool_urgent_for_v5.17_rc3' of git://git.kernel.org/pub/…
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
torvalds committed Feb 6, 2022
2 parents b72e40b + 8288028 commit aeabe1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/objtool/check.c
Original file line number Diff line number Diff line change
Expand Up @@ -2854,7 +2854,7 @@ static inline bool func_uaccess_safe(struct symbol *func)

static inline const char *call_dest_name(struct instruction *insn)
{
static char pvname[16];
static char pvname[19];
struct reloc *rel;
int idx;

Expand Down

0 comments on commit aeabe1e

Please sign in to comment.