[Motiftools-xmt-cvs] CVS: xmt/Xmt Pixmap.c,1.10,1.11
Brought to you by:
motiftools
From: Grant M. <grm...@us...> - 2003-10-29 16:38:25
|
Update of /cvsroot/motiftools/xmt/Xmt In directory sc8-pr-cvs1:/tmp/cvs-serv4816 Modified Files: Pixmap.c Log Message: GC allocated in XmtCreateStippledPixmap was not freed Index: Pixmap.c =================================================================== RCS file: /cvsroot/motiftools/xmt/Xmt/Pixmap.c,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** Pixmap.c 27 Oct 2003 20:19:59 -0000 1.10 --- Pixmap.c 29 Oct 2003 16:38:22 -0000 1.11 *************** *** 10,13 **** --- 10,16 ---- * * $Log$ + * Revision 1.11 2003/10/29 16:38:22 grmcdorman + * GC allocated in XmtCreateStippledPixmap was not freed + * * Revision 1.10 2003/10/27 20:19:59 grmcdorman * Major performance rework for XmtRecolorPixmap *************** *** 954,957 **** --- 957,961 ---- XmDestroyPixmap(w->core.screen, stipple); + XFreeGC(w->core.screen->display, gc); return computed; |