753f5e6d3e
- Fix debuginfo addresses resolving for --emit-relocs Linux kernels (BZ 203661, from Jan Kratochvil, like the remaining changes). - Bugfix segv on the source display by ^X 1 (fixes Patch130, BZ 200048). - Do not step into the PPC solib trampolines (BZ 200533). - Fix exec() from threaded program, partial CVS backport (BZ 182116). - Fix occasional failure to load shared libraries (BZ 146810). - Bugfix object names completion (fixes Patch116, BZ 193763). - Avoid crash of 'info threads' if stale threads exist (BZ 195429). - Handle corrupted or missing location list information (BZ 196439).
17 lines
727 B
Diff
17 lines
727 B
Diff
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=193763
|
|
|
|
|
|
Index: gdb-6.5/gdb/linespec.c
|
|
===================================================================
|
|
--- gdb-6.5.orig/gdb/linespec.c 2006-08-24 02:57:04.000000000 -0300
|
|
+++ gdb-6.5/gdb/linespec.c 2006-08-24 02:57:07.000000000 -0300
|
|
@@ -295,7 +295,7 @@ add_minsym_members (const char *class_na
|
|
This will give us a list of all the member names including
|
|
the function signature. */
|
|
completion_name = xmalloc (strlen (class_name) +
|
|
- strlen (member_name) + 9);
|
|
+ strlen (member_name) + strlen("'::$base(") + 1);
|
|
completion_name[0] = '\'';
|
|
strcpy (completion_name+1, class_name);
|
|
/* FIXME: make this the language class separator. */
|