diff options
author | gildea <empty> | 1994-02-07 14:49:14 +0000 |
---|---|---|
committer | gildea <empty> | 1994-02-07 14:49:14 +0000 |
commit | 29308574f86828110a6954e21e6b84d9fb478f6e (patch) | |
tree | 1402e2396564fcb8c35553f575134f60dd92bec5 /xc/lib/font/fc/fserve.c | |
parent | 1b72a0026f18e1bb90ee6660ad0096b79b7c85fc (diff) |
free devPrivates when closing font. XBUG #6360.
Diffstat (limited to 'xc/lib/font/fc/fserve.c')
-rw-r--r-- | xc/lib/font/fc/fserve.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xc/lib/font/fc/fserve.c b/xc/lib/font/fc/fserve.c index 78e9f9ca0..8a6ad8da3 100644 --- a/xc/lib/font/fc/fserve.c +++ b/xc/lib/font/fc/fserve.c @@ -1,4 +1,4 @@ -/* $XConsortium: fserve.c,v 1.33 94/02/03 10:07:12 gildea Exp $ */ +/* $XConsortium: fserve.c,v 1.34 94/02/07 11:21:09 gildea Exp $ */ /* * Copyright 1990 Network Computing Devices * @@ -1653,6 +1653,7 @@ fs_close_font(fpe, pfont) xfree(fsd); xfree(pfont->info.isStringProp); xfree(pfont->info.props); + xfree(pfont->devPrivates); xfree(pfont); |