From 4afe769467e4cde7d4251ddb5ae335c28e62a5a6 Mon Sep 17 00:00:00 2001 From: Jay Sorg Date: Tue, 19 Aug 2014 15:46:28 -0700 Subject: [PATCH] xrdp: encoder shutdown fix --- xrdp/xrdp_mm.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/xrdp/xrdp_mm.c b/xrdp/xrdp_mm.c index 179a44e7..76957ad6 100644 --- a/xrdp/xrdp_mm.c +++ b/xrdp/xrdp_mm.c @@ -129,9 +129,6 @@ xrdp_mm_module_cleanup(struct xrdp_mm *self) { log_message(LOG_LEVEL_DEBUG, "xrdp_mm_module_cleanup"); - /* shutdown thread */ - deinit_xrdp_encoder(self); - if (self->mod != 0) { if (self->mod_exit != 0) @@ -175,6 +172,10 @@ xrdp_mm_delete(struct xrdp_mm *self) /* free any module stuff */ xrdp_mm_module_cleanup(self); + + /* shutdown thread */ + deinit_xrdp_encoder(self); + trans_delete(self->sesman_trans); self->sesman_trans = 0; self->sesman_trans_up = 0;