aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-devtools/gdbc6x/gdbc6x/0001-ihex.c-fix-format-overflow-error-in-gcc7.patch
blob: 95b6e449aab82dd368f6fca90c17a715a8df8ab8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
From daca80121b92504c4a21e7420765a91d9625f2a4 Mon Sep 17 00:00:00 2001
From: Denys Dmytriyenko <denys@ti.com>
Date: Fri, 10 Nov 2017 20:11:45 -0500
Subject: [PATCH] ihex.c: fix format overflow error in gcc7

Signed-off-by: Denys Dmytriyenko <denys@ti.com>
---
 gdbc6x/bfd/ihex.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gdbc6x/bfd/ihex.c b/gdbc6x/bfd/ihex.c
index 09f756a..abe7398 100644
--- a/gdbc6x/bfd/ihex.c
+++ b/gdbc6x/bfd/ihex.c
@@ -217,7 +217,7 @@ ihex_bad_byte (bfd *abfd, unsigned int lineno, int c, bfd_boolean error)
     }
   else
     {
-      char buf[10];
+      char buf[13];
 
       if (! ISPRINT (c))
 	sprintf (buf, "\\%03o", (unsigned int) c);
-- 
2.7.4