[Motiftools-xmt-cvs] CVS: xmt/Xmt Xpm.c,1.3,1.4
Brought to you by:
motiftools
From: Grant M. <grm...@us...> - 2003-10-27 21:33:54
|
Update of /cvsroot/motiftools/xmt/Xmt In directory sc8-pr-cvs1:/tmp/cvs-serv24148 Modified Files: Xpm.c Log Message: Add comment about spurious Purify warning Index: Xpm.c =================================================================== RCS file: /cvsroot/motiftools/xmt/Xmt/Xpm.c,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Xpm.c 24 Apr 2002 23:09:22 -0000 1.3 --- Xpm.c 27 Oct 2003 21:30:13 -0000 1.4 *************** *** 10,13 **** --- 10,16 ---- * * $Log$ + * Revision 1.4 2003/10/27 21:30:13 grmcdorman + * Add comment about spurious Purify warning + * * Revision 1.3 2002/04/24 23:09:22 grmcdorman * Fixes for sizing, add Default button support. Also, calculated pixmaps are now cached. *************** *** 1496,1499 **** --- 1499,1506 ---- XPutImage(dpy, *mask_return, gc, mask, 0, 0, 0, 0, mask->width, mask->height); + /* Note: Purify flags this as a 'freeing msmatched memory' (FMM), + * as the mask storage was allocated by XtMalloc() but is being + * freed by free(). This is harmless and can be ignored. + */ XDestroyImage(mask); XFreeGC(dpy, gc); |