Changed free() to xfree() where appropriate. Also changed Copyright to

include 2001.
This commit is contained in:
John R. Moore
2001-02-02 20:01:16 +00:00
parent 2b5436af18
commit 338d7c5c40
7 changed files with 26 additions and 16 deletions

View File

@ -1,6 +1,6 @@
/* Generic support for remote debugging interfaces.
Copyright 1993 Free Software Foundation, Inc.
Copyright 1993, 2001 Free Software Foundation, Inc.
This file is part of GDB.
@ -53,7 +53,7 @@ extern struct _sr_settings sr_settings;
#define sr_get_device() (sr_settings.device)
#define sr_set_device(newval) \
{ \
if (sr_settings.device) free(sr_settings.device); \
if (sr_settings.device) xfree (sr_settings.device); \
sr_settings.device = (newval); \
}