Fix: don't assert on lib unload failure
[babeltrace.git] / lib / debug-info.c
index 212238640ec223d9cc29470471fe6f3efd4fc1b5..6acf174655b2b71c16f18eac26c8937d0b2c770c 100644 (file)
@@ -746,8 +746,8 @@ void handle_lib_unload_event(struct debug_info *debug_info,
        }
 
        key_ptr = (gpointer) &baddr;
        }
 
        key_ptr = (gpointer) &baddr;
-       assert(g_hash_table_remove(proc_dbg_info_src->baddr_to_bin_info,
-                       key_ptr));
+       (void) g_hash_table_remove(proc_dbg_info_src->baddr_to_bin_info,
+                       key_ptr);
 end:
        return;
 }
 end:
        return;
 }
This page took 0.02292 seconds and 4 git commands to generate.