Re: Is chromium-149.0.7827.196 crashing for you guys?

Robert Nagy <[email protected]> Thu, 30 Jul 2026 22:33:18 +0200
Newsgroups gmane.os.openbsd.ports
Message-ID <[email protected]>
On 28/07/26 23:30 +0200, Kirill A. Korinsky wrote:
> On Tue, 28 Jul 2026 22:54:13 +0200,
> Mikolaj Kucharski <[email protected]> wrote:
> > 
> > Hi.
> > 
> > Vinted is still crashing Chromium for me. Would it be possible to
> > bring in changes to mitigate the problem?
> >
> 
> You may add --disable-features=WebSerialAPI as command line option to
> disable that crash.

Please try this patch only.

Index: services/device/device_service.cc
--- services/device/device_service.cc.orig
+++ services/device/device_service.cc
@@ -6,6 +6,8 @@

 #include <utility>

+#include "base/notimplemented.h"
+
 #include "base/functional/bind.h"
 #include "base/memory/weak_ptr.h"
 #include "base/task/single_thread_task_runner.h"
@@ -310,7 +312,7 @@ void DeviceService::BindSerialPortManager(
   serial_port_manager_.AsyncCall(&SerialPortManagerImpl::Bind, FROM_HERE)
       .WithArgs(std::move(receiver));
 #else   // defined(IS_SERIAL_ENABLED_PLATFORM)
-  NOTREACHED() << "Serial devices not supported on this platform.";
+  NOTIMPLEMENTED() << "Serial devices not supported on this platform.";
 #endif  // defined(IS_SERIAL_ENABLED_PLATFORM)
 }