Commit d316b798 authored by Andrew den Exter's avatar Andrew den Exter
Browse files

Fix crash when pinging a surface with an invalid resource.


Check the surface hasn't been deleted before initiating the ping so
that an invalid resource isn't dereferenced when printing a warning
after the operation inevitably fails.

Change-Id: I18c82de280d5a7a5339e3179c2bba49800626bb6
Reviewed-by: default avatarJohan Helsing <johan.helsing@theqtcompany.com>
Reviewed-by: default avatarGiulio Camuffo <giulio.camuffo@kdab.com>
Reviewed-by: default avatarPier Luigi Fiorini <pierluigi.fiorini@gmail.com>
Showing with 4 additions and 0 deletions
...@@ -361,6 +361,10 @@ bool QWaylandSurface::sendInterfaceOp(QWaylandSurfaceOp &op) ...@@ -361,6 +361,10 @@ bool QWaylandSurface::sendInterfaceOp(QWaylandSurfaceOp &op)
void QWaylandSurface::ping() void QWaylandSurface::ping()
{ {
Q_D(QWaylandSurface); Q_D(QWaylandSurface);
if (d->isDestroyed())
return;
uint32_t serial = wl_display_next_serial(compositor()->waylandDisplay()); uint32_t serial = wl_display_next_serial(compositor()->waylandDisplay());
QWaylandSurfacePingOp op(serial); QWaylandSurfacePingOp op(serial);
if (!sendInterfaceOp(op)) { if (!sendInterfaceOp(op)) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment