https://bugs.winehq.org/show_bug.cgi?id=40304
--- Comment #6 from Louis Lenders xerox_xerox2000@yahoo.co.uk --- (In reply to Nikolay Sivov from comment #5)
This makes sense to me. Please remove check for NULL matrix in GdipFlattenPath() too before sending this.
Hi Nicolay, I`m not sure what you mean with that last remark. The code in GdipFlattenPath seems to handle things already correctly,right?:
GpStatus WINGDIPAPI GdipFlattenPath(GpPath *path, GpMatrix* matrix, REAL flatness) . . . .
if(matrix){ stat = GdipTransformPath(path, matrix); if (stat != Ok) return stat; }
. . .