sessionLock: fix incorrect protocol error raised

fixes #5816
This commit is contained in:
Vaxry 2024-04-30 20:02:30 +01:00
parent 1f6657f037
commit dbb8b294d6
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ CSessionLockSurface::CSessionLockSurface(SP<CExtSessionLockSurfaceV1> resource_,
hyprListener_surfaceCommit.initCallback(
&pSurface->events.commit,
[this](void* owner, void* data) {
if (!pSurface->current.buffer) {
if (pSurface->pending.buffer_width <= 0 || pSurface->pending.buffer_height <= 0) {
LOGM(ERR, "SessionLock attached a null buffer");
wl_resource_post_error(resource->resource(), EXT_SESSION_LOCK_SURFACE_V1_ERROR_NULL_BUFFER, "Null buffer attached");
return;