diff options
author | nyamatongwe <unknown> | 2011-06-05 09:33:52 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-06-05 09:33:52 +1000 |
commit | 6f86a715d8685a988868163b596e8ef22b7ade8f (patch) | |
tree | 15510afdb3de799089030233dc302f205a99fcec /src/ViewStyle.cxx | |
parent | 2bab6f19c8d2d4ced303e74f6197b633e5ed39f1 (diff) | |
download | scintilla-mirror-6f86a715d8685a988868163b596e8ef22b7ade8f.tar.gz |
Stop fonts leaking. Bug #3306156.
From Marko Njezic.
Diffstat (limited to 'src/ViewStyle.cxx')
-rw-r--r-- | src/ViewStyle.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ViewStyle.cxx b/src/ViewStyle.cxx index 58e0edea9..03a2fb42f 100644 --- a/src/ViewStyle.cxx +++ b/src/ViewStyle.cxx @@ -78,6 +78,7 @@ FontRealised::FontRealised(const FontSpecification &fs) { } FontRealised::~FontRealised() { + font.Release(); delete frNext; frNext = 0; } |