libdrm/lima: remove try-catch from ioctl call

Remove the exception handling as at this point all exceptions should
have been handled internally already.

Issue #4760.
This commit is contained in:
Josef Söntgen 2023-02-09 17:31:34 +01:00 committed by Christian Helmuth
parent b8d8ff6d4d
commit 401da72a86

View File

@ -874,8 +874,7 @@ int lima_drm_ioctl(unsigned long request, void *arg)
if (verbose_ioctl)
dump_ioctl(request);
try {
int ret = _drm->ioctl(request, arg);
int const ret = _drm->ioctl(request, arg);
if (verbose_ioctl)
Genode::log("returned ", ret);
@ -883,11 +882,6 @@ int lima_drm_ioctl(unsigned long request, void *arg)
pthread_mutex_unlock(&ioctl_mutex);
return ret;
} catch (...) { }
pthread_mutex_unlock(&ioctl_mutex);
return -1;
}