From: aidan Date: Sat, 13 Jul 2002 12:24:05 +0000 (+0000) Subject: * ada-tasks.c (add_task_entry): replace calls to X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=fbcbebc11e29a6d3c94dfb0bbdc6fd9f2db7366d;p=pf3gnuchains%2Fsourceware.git * ada-tasks.c (add_task_entry): replace calls to malloc() with xmalloc * ada-tasks.c (init_task_list): replace calls to free with xfree() * ada-lang.c (replace_operator_with_call, fill_in_ada_prototype, ada_finish_decode_line_1, all_sals_for_line ada_breakpoint_rewrite): replace calls to free() with xfree() --- diff --git a/gdb/ada-tasks.c b/gdb/ada-tasks.c index 23dc105ea9..426fdff306 100644 --- a/gdb/ada-tasks.c +++ b/gdb/ada-tasks.c @@ -164,7 +164,7 @@ static int add_task_entry (p_task_id, index) struct task_entry *pt; highest_task_num++; - new_task_entry = malloc (sizeof (struct task_entry)); + new_task_entry = xmalloc (sizeof (struct task_entry)); new_task_entry->task_num = highest_task_num; new_task_entry->task_id = p_task_id; new_task_entry->known_tasks_index = index; @@ -236,7 +236,7 @@ void init_task_list () { old_pt = pt; pt = pt->next_task; - free (old_pt); + xfree (old_pt); }; task_list = NULL; highest_task_num = 0;