Merge pull request #2080 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
1 changed files with 1 additions and 1 deletions

View File

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