OSDN Git Service

merge from gcc
authorDJ Delorie <dj@delorie.com>
Fri, 12 May 2006 20:00:37 +0000 (20:00 +0000)
committerDJ Delorie <dj@delorie.com>
Fri, 12 May 2006 20:00:37 +0000 (20:00 +0000)
libiberty/ChangeLog
libiberty/cplus-dem.c

index 76baa3c..ef48f86 100644 (file)
@@ -1,3 +1,8 @@
+2006-05-12  Anton Blanchard  <anton@samba.org>
+
+       * cplus-dem.c (demangle_fund_type): Ensure buf is large enough to
+       hold "int%u_t".
+
 2006-04-24  Julian Brown  <julian@codesourcery.com>
 
        * floatformat.c (floatformat_to_double): Fix (biased) exponent=0 case.
index 8b60434..1f8b1fc 100644 (file)
@@ -3693,7 +3693,7 @@ demangle_fund_type (struct work_stuff *work,
 {
   int done = 0;
   int success = 1;
-  char buf[10];
+  char buf[INTBUF_SIZE + 5 /* 'int%u_t' */];
   unsigned int dec = 0;
   type_kind_t tk = tk_integral;