Index: libcfa/src/heap.cfa
===================================================================
--- libcfa/src/heap.cfa	(revision 7a2057a58d57841da935d6fab4f3076b3b2824bf)
+++ libcfa/src/heap.cfa	(revision 93e060361b71909eb41dddaff08c17a913a7b99e)
@@ -10,6 +10,6 @@
 // Created On       : Tue Dec 19 21:58:35 2017
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sun Oct 30 15:33:13 2022
-// Update Count     : 1580
+// Last Modified On : Sun Oct 30 20:56:20 2022
+// Update Count     : 1584
 //
 
@@ -499,5 +499,5 @@
 	if ( unlikely( ! heapMasterBootFlag ) ) heapMasterCtor();
 
-	lock( heapMaster.mgrLock );		// protect heapMaster counters
+	lock( heapMaster.mgrLock );							// protect heapMaster counters
 
 	// get storage for heap manager
@@ -810,8 +810,7 @@
 
 		size_t increase = ceiling2( size > heapExpand ? size : heapExpand, libAlign() );
-		// Do not call abort or strerror( errno ) as they may call malloc.
 		if ( unlikely( sbrk( increase ) == (void *)-1 ) ) {	// failed, no memory ?
 			unlock( extLock );
-			abort( NO_MEMORY_MSG, size );				// no memory
+			abort( NO_MEMORY_MSG, size );				// give up
 		} // if
 
