diff options
author | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2007-04-05 14:18:05 -0400 |
---|---|---|
committer | Eamon Walsh <ewalsh@moss-uranus.epoch.ncsc.mil> | 2007-04-05 14:18:05 -0400 |
commit | 5ad562565ac8ef9257da3afb0de1ae4f90f80fe9 (patch) | |
tree | db1cc6bbc7f1219c74fb1443769c49cb171d53a8 /afb | |
parent | 1d550bb2c5cb5b3e588f0e0b68a421dc1cb8bd7c (diff) |
devPrivates rework: properly free devPrivates on compatibility structures,
type pixmap. Requires ddx'es to call the free function from DestroyPixmap.
Diffstat (limited to 'afb')
-rw-r--r-- | afb/afb.h | 1 | ||||
-rw-r--r-- | afb/afbpixmap.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -55,6 +55,7 @@ SOFTWARE. #include "gc.h" #include "colormap.h" #include "regionstr.h" +#include "privates.h" #include "mibstore.h" #include "mfb.h" diff --git a/afb/afbpixmap.c b/afb/afbpixmap.c index 77ba53513..5a81679e8 100644 --- a/afb/afbpixmap.c +++ b/afb/afbpixmap.c @@ -113,6 +113,7 @@ afbDestroyPixmap(pPixmap) { if(--pPixmap->refcnt) return(TRUE); + dixFreePrivates(*DEVPRIV_PTR(pPixmap)); xfree(pPixmap); return(TRUE); } |