Merge pull request #158 from nfedera/rfxcontextfix

xfreerdp: rfx_context was not freed
This commit is contained in:
Marc-André Moreau 2011-10-18 13:57:31 -07:00
commit b1833f26ea

View File

@ -927,6 +927,12 @@ void xf_window_free(xfInfo* xfi)
}
}
if (xfi->rfx_context)
{
rfx_context_free(xfi->rfx_context);
xfi->rfx_context = NULL;
}
xfree(xfi->clrconv);
xf_tsmf_uninit(xfi);