[HOTFIX] Web app is crashing during exit 56/306456/6
authorKoyyani Maheswari <m.koyyani@samsung.com>
Wed, 21 Feb 2024 12:29:23 +0000 (17:59 +0530)
committerBot Blink <blinkbot@samsung.com>
Thu, 29 Feb 2024 12:01:51 +0000 (12:01 +0000)
when the web app is terminated, crash is reported with the below
callstack:

(gdb) bt
0xb30f4f16 in mojo::InterfaceEndpointClient::~InterfaceEndpointClient() ()
at /usr/share/chromium-efl/lib/libchromium-impl.so

Disabling the CHECK temporarily since crash is happening only on termination.

Change-Id: Id4c4fa55ee6398a6a1bb637634103c2a5985cf27
Signed-off-by: Koyyani Maheswari <m.koyyani@samsung.com>
mojo/public/cpp/bindings/lib/interface_endpoint_client.cc

index 7e4d699..9bf3e76 100644 (file)
@@ -490,7 +490,7 @@ InterfaceEndpointClient::InterfaceEndpointClient(
 }
 
 InterfaceEndpointClient::~InterfaceEndpointClient() {
-  CHECK(sequence_checker_.CalledOnValidSequence());
+  DCHECK(sequence_checker_.CalledOnValidSequence());
   if (controller_)
     handle_.group_controller()->DetachEndpointClient(handle_);
 }