]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
release the sorted FDE array when deregistering a frame [PR109685]
authorThomas Neumann <tneumann@users.sourceforge.net>
Tue, 2 May 2023 14:21:09 +0000 (16:21 +0200)
committerThomas Neumann <tneumann@users.sourceforge.net>
Sat, 3 Jun 2023 07:45:43 +0000 (09:45 +0200)
The atomic fastpath bypasses the code that releases the sort
array which was lazily allocated during unwinding. We now
check after deregistering if there is an array to free.

libgcc/ChangeLog:
PR libgcc/109685
* unwind-dw2-fde.c: Free sort array in atomic fast path.

libgcc/unwind-dw2-fde.c

index a5786bf729ce3a940be745488ca58cadc6ab4a86..32b9e64a1c8850c825f7858499c03ee99c941b98 100644 (file)
@@ -241,6 +241,12 @@ __deregister_frame_info_bases (const void *begin)
   // And remove
   ob = btree_remove (&registered_frames, range[0]);
   bool empty_table = (range[1] - range[0]) == 0;
+
+  // Deallocate the sort array if any.
+  if (ob && ob->s.b.sorted)
+    {
+      free (ob->u.sort);
+    }
 #else
   init_object_mutex_once ();
   __gthread_mutex_lock (&object_mutex);