diff --git a/src/NCollection/NCollection_BaseMap.cxx b/src/NCollection/NCollection_BaseMap.cxx index dcaa1e72e3..c18c219fcb 100644 --- a/src/NCollection/NCollection_BaseMap.cxx +++ b/src/NCollection/NCollection_BaseMap.cxx @@ -17,7 +17,6 @@ #include #include -#include //======================================================================= //function : BeginResize @@ -32,8 +31,13 @@ Standard_Boolean NCollection_BaseMap::BeginResize { // get next size for the buckets array N = NextPrimeForMap(NbBuckets); - Standard_ASSERT (N > NbBuckets, "NextPrimeForMap failed to return valid number", return Standard_False); - + if (N <= myNbBuckets) + { + if (!myData1) + N = myNbBuckets; + else + return Standard_False; + } data1 = (NCollection_ListNode **) myAllocator->Allocate((N+1)*sizeof(NCollection_ListNode *)); memset(data1, 0, (N+1)*sizeof(NCollection_ListNode *));