[client,x11] fix settings access warning

This commit is contained in:
akallabeth 2023-11-25 21:02:09 +01:00 committed by akallabeth
parent ed3a1113f5
commit a9c57b6319

View File

@ -385,10 +385,11 @@ BOOL xf_detect_monitors(xfContext* xfc, UINT32* pMaxWidth, UINT32* pMaxHeight)
{ {
UINT32 nr = 0; UINT32 nr = 0;
UINT32* ids = freerdp_settings_get_pointer_array_writable(settings, FreeRDP_MonitorIds, 0); {
const UINT32* ids = freerdp_settings_get_pointer(settings, FreeRDP_MonitorIds);
if (ids) if (ids)
nr = *ids; nr = *ids;
}
for (UINT32 i = 0; i < vscreen->nmonitors; i++) for (UINT32 i = 0; i < vscreen->nmonitors; i++)
{ {
MONITOR_ATTRIBUTES* attrs; MONITOR_ATTRIBUTES* attrs;