Skip to content

Commit

Permalink
Merge pull request #39 from earlephilhower/f1
Browse files Browse the repository at this point in the history
Fix buffer overflow in GCC backport patch
  • Loading branch information
earlephilhower authored Jun 21, 2022
2 parents 8903880 + bd0ee83 commit e5f9fec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1571,7 +1571,7 @@ index 2a8e59ee9..124548dfe 100644
+{
+ rtx_insn *prev_insn = prev_nonnote_nondebug_insn (insn);
+ const char *init = "ssai\t8\;";
+ static char result[64];
+ static char result[128];
+ if (prev_insn && NONJUMP_INSN_P (prev_insn))
+ {
+ rtx x = PATTERN (prev_insn);
Expand Down

0 comments on commit e5f9fec

Please sign in to comment.