diff options
| author | jsorg71 <jay.sorg@gmail.com> | 2014-03-18 11:27:24 -0700 |
|---|---|---|
| committer | jsorg71 <jay.sorg@gmail.com> | 2014-03-18 11:27:24 -0700 |
| commit | 3aae7ffff62ce0259c2b94513f4e1cc9e0e8096f (patch) | |
| tree | 9c5df17eea7f2b615e9b9190ee73238133f0f845 | |
| parent | 56783ee262fb9cb991292d398b3bfe188b704c8b (diff) | |
| parent | 185aafd12dd9b7beb98b2fd5725819bbae06da8a (diff) | |
| download | xrdp-proprietary-3aae7ffff62ce0259c2b94513f4e1cc9e0e8096f.tar.gz xrdp-proprietary-3aae7ffff62ce0259c2b94513f4e1cc9e0e8096f.zip | |
Merge pull request #114 from moobyfr/devel
Call cleanup for encoder
| -rw-r--r-- | xrdp/xrdp_mm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xrdp/xrdp_mm.c b/xrdp/xrdp_mm.c index 10b7234d..e7e338a5 100644 --- a/xrdp/xrdp_mm.c +++ b/xrdp/xrdp_mm.c @@ -90,6 +90,8 @@ xrdp_mm_module_cleanup(struct xrdp_mm *self) { log_message(LOG_LEVEL_DEBUG,"xrdp_mm_module_cleanup"); + deinit_xrdp_encoder(self); + if (self->mod != 0) { if (self->mod_exit != 0) |
