aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPWindowControllerDelegate.m
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2012-04-14 16:45:17 +0000
committerrowanbeentje <rowan@beent.je>2012-04-14 16:45:17 +0000
commitec277286b0200cf5c36c4bb2ef11cb5fd9b31a67 (patch)
tree1d5f37ebf82349ed9e522d301d70df55fc8eaf75 /Source/SPWindowControllerDelegate.m
parent3e85e46ba68f19b96a1e461e3fe039f4f61d6526 (diff)
downloadsequelpro-ec277286b0200cf5c36c4bb2ef11cb5fd9b31a67.tar.gz
sequelpro-ec277286b0200cf5c36c4bb2ef11cb5fd9b31a67.tar.bz2
sequelpro-ec277286b0200cf5c36c4bb2ef11cb5fd9b31a67.zip
- Fix a number of small memory leaks
Diffstat (limited to 'Source/SPWindowControllerDelegate.m')
-rw-r--r--Source/SPWindowControllerDelegate.m1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/SPWindowControllerDelegate.m b/Source/SPWindowControllerDelegate.m
index 220930de..31876263 100644
--- a/Source/SPWindowControllerDelegate.m
+++ b/Source/SPWindowControllerDelegate.m
@@ -368,6 +368,7 @@
CGImageRef windowImage = CGWindowListCreateImage(CGRectNull, kCGWindowListOptionIncludingWindow, (unsigned int)[[self window] windowNumber], kCGWindowImageBoundsIgnoreFraming);
NSBitmapImageRep *viewRep = [[NSBitmapImageRep alloc] initWithCGImage:windowImage];
[viewImage addRepresentation:viewRep];
+ [viewRep release];
// Calculate the titlebar+toolbar height
CGFloat contentViewOffsetY = [[self window] frame].size.height - [[[self window] contentView] frame].size.height;