* cli/cli-cmds.c (apropos_command): Changed occurance of free() to xfree().
Also changed Copyright to include 2001.
This commit is contained in:
parent
824670030b
commit
2b5436af18
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2001-02-02 John Moore <jmoore@redhat.com>
|
||||||
|
|
||||||
|
* cli/cli-cmds.c (apropos_command): Changed occurance of free() to
|
||||||
|
xfree(). Also changed Copyright to include 2001.
|
||||||
|
|
||||||
2001-02-02 J.T. Conklin <jtc@redback.com>
|
2001-02-02 J.T. Conklin <jtc@redback.com>
|
||||||
|
|
||||||
* monitor.c (#include "gdb_wait.h"): Removed.
|
* monitor.c (#include "gdb_wait.h"): Removed.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/* GDB CLI commands.
|
/* GDB CLI commands.
|
||||||
Copyright 2000 Free Software Foundation, Inc.
|
Copyright 2000, 2001 Free Software Foundation, Inc.
|
||||||
|
|
||||||
This file is part of GDB.
|
This file is part of GDB.
|
||||||
|
|
||||||
|
@ -557,7 +557,7 @@ apropos_command (char *searchstr, int from_tty)
|
||||||
regerror(regcomp(&pattern,searchstr,REG_ICASE),NULL,errorbuffer,512);
|
regerror(regcomp(&pattern,searchstr,REG_ICASE),NULL,errorbuffer,512);
|
||||||
error("Error in regular expression:%s",errorbuffer);
|
error("Error in regular expression:%s",errorbuffer);
|
||||||
}
|
}
|
||||||
free(pattern_fastmap);
|
xfree (pattern_fastmap);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue