mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-10-31 20:37:52 +00:00
Fix crash in logging in CreateStrayLayer
It was trying to log value of layer_id which is specifically known not to exist, potentially leading to segfault. Log display_id instead.
This commit is contained in:
parent
aa74aaf38f
commit
ab02addde3
1 changed files with 1 additions and 1 deletions
|
@ -1158,7 +1158,7 @@ private:
|
||||||
|
|
||||||
const auto layer_id = nv_flinger.CreateLayer(display_id);
|
const auto layer_id = nv_flinger.CreateLayer(display_id);
|
||||||
if (!layer_id) {
|
if (!layer_id) {
|
||||||
LOG_ERROR(Service_VI, "Layer not found! layer_id={}", *layer_id);
|
LOG_ERROR(Service_VI, "Layer not found! display_id={}", display_id);
|
||||||
IPC::ResponseBuilder rb{ctx, 2};
|
IPC::ResponseBuilder rb{ctx, 2};
|
||||||
rb.Push(ERR_NOT_FOUND);
|
rb.Push(ERR_NOT_FOUND);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue