Merge pull request from bmiklautz/issue/2079

xfreerdp: use _aligned_free instead of free
This commit is contained in:
Marc-André Moreau 2014-09-10 10:49:33 -04:00
commit 4abf49caa8

View File

@ -258,7 +258,7 @@ Pixmap xf_brush_new(xfContext* xfc, int width, int height, int bpp, BYTE* data)
XFree(image); XFree(image);
if (cdata != data) if (cdata != data)
free(cdata); _aligned_free(cdata);
XFreeGC(xfc->display, gc); XFreeGC(xfc->display, gc);
} }