frame.c (end_fde_sort): Remove extraneous erratic array test.

* frame.c (end_fde_sort): Remove extraneous erratic array test.

	* frame.c (start_fde_sort): Don't malloc (0).

From-SVN: r34452
This commit is contained in:
Nathan Sidwell 2000-06-08 08:30:28 +00:00
parent 68c8e13efd
commit 89d7f003d3
2 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,11 @@
2000-06-08 Nathan Sidwell <nathan@codesourcery.com>
* frame.c (end_fde_sort): Remove extraneous erratic array test.
2000-06-08 Denis Perchine <dyp@perchine.com>
* frame.c (start_fde_sort): Don't malloc (0).
2000-06-07 Zack Weinberg <zack@wolery.cumb.org>
* c-decl.c (pushdecl): Do not call COMPLETE_TYPE_P on

View file

@ -59,7 +59,7 @@ typedef struct fde_accumulator
static inline int
start_fde_sort (fde_accumulator *accu, size_t count)
{
accu->linear.array = (fde **) malloc (sizeof (fde *) * count);
accu->linear.array = count ? (fde **) malloc (sizeof (fde *) * count) : NULL;
accu->erratic.array = accu->linear.array ?
(fde **) malloc (sizeof (fde *) * count) : NULL;
accu->linear.count = 0;
@ -230,8 +230,7 @@ end_fde_sort (fde_accumulator *accu, size_t count)
abort ();
frame_heapsort (&accu->erratic);
fde_merge (&accu->linear, &accu->erratic);
if (accu->erratic.array)
free (accu->erratic.array);
free (accu->erratic.array);
}
else
{