diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2018-07-28 10:51:19 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2018-07-28 10:51:19 +0000 | 
| commit | eb11fae6d08f479c0799db45860a98af528fa6e7 (patch) | |
| tree | 44d492a50c8c1a7eb8e2d17ea3360ec4d066f042 /lib/Support/FoldingSet.cpp | |
| parent | b8a2042aa938069e862750553db0e4d82d25822c (diff) | |
Notes
Diffstat (limited to 'lib/Support/FoldingSet.cpp')
| -rw-r--r-- | lib/Support/FoldingSet.cpp | 7 | 
1 files changed, 2 insertions, 5 deletions
| diff --git a/lib/Support/FoldingSet.cpp b/lib/Support/FoldingSet.cpp index 942379549039..ec7d57586e8b 100644 --- a/lib/Support/FoldingSet.cpp +++ b/lib/Support/FoldingSet.cpp @@ -214,11 +214,8 @@ static void **GetBucketFor(unsigned Hash, void **Buckets, unsigned NumBuckets) {  /// AllocateBuckets - Allocated initialized bucket memory.  static void **AllocateBuckets(unsigned NumBuckets) { -  void **Buckets = static_cast<void**>(calloc(NumBuckets+1, sizeof(void*))); - -  if (Buckets == nullptr) -    report_bad_alloc_error("Allocation of Buckets failed."); -   +  void **Buckets = static_cast<void**>(safe_calloc(NumBuckets + 1, +                                                   sizeof(void*)));    // Set the very last bucket to be a non-null "pointer".    Buckets[NumBuckets] = reinterpret_cast<void*>(-1);    return Buckets; | 
