Skip to content

Commit

Permalink
More merges
Browse files Browse the repository at this point in the history
  • Loading branch information
Nexarian committed Dec 26, 2023
1 parent 62fcc9a commit 6d35614
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion xrdp/xrdp_mm.c
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ xrdp_mm_delete(struct xrdp_mm *self)
list_delete(self->resize_queue);
g_free(self->resize_data);
g_delete_wait_obj(self->resize_ready);
xrdp_egfx_shutdown_full(self->egfx);
g_free(self);
}

Expand Down Expand Up @@ -1259,7 +1260,8 @@ dynamic_monitor_data(intptr_t id, int chan_id, char *data, int bytes)
list_add_item(wm->mm->resize_queue, (tintptr)display_size_data);
g_set_wait_obj(wm->mm->resize_ready);
LOG(LOG_LEVEL_DEBUG, "dynamic_monitor_data:"
" received width %d, received height %d.", display_size_data->session_width, display_size_data->session_height);
" received width %d, received height %d.",
display_size_data->session_width, display_size_data->session_height);
return 0;
}

Expand All @@ -1279,6 +1281,9 @@ process_display_control_monitor_layout_data(struct xrdp_wm *wm)
int error = 0;
struct xrdp_mm *mm;
struct xrdp_mod *module;
struct xrdp_rdp *rdp;
struct xrdp_sec *sec;
struct xrdp_channel *chan;

LOG_DEVEL(LOG_LEVEL_TRACE, "process_display_control_monitor_layout_data:");

Expand Down

0 comments on commit 6d35614

Please sign in to comment.