Fri Aug 8 00:13:32 1997 Martin M. Hunt <hunt@cygnus.com>

* gdbtk.c (breakpoint_notify): Change buffer size from 100
	to 256 to avoid memory corruption with very long pathnames.
This commit is contained in:
Martin Hunt
1997-08-08 07:13:16 +00:00
parent 259130e56d
commit 32707df8fb
2 changed files with 11 additions and 2 deletions

View File

@ -433,7 +433,7 @@ breakpoint_notify(b, action)
struct breakpoint *b;
const char *action;
{
char buf[100];
char buf[256];
int v;
struct symtab_and_line sal;