1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-03 18:25:35 +00:00

safety in deallocating view

This commit is contained in:
Mitchell Livingston 2006-12-24 16:38:14 +00:00
parent 7bba2d02a1
commit 36c2d957f2

View file

@ -37,7 +37,8 @@
- (void) dealloc
{
[fBackgroundColor release];
if (fBackgroundColor)
[fBackgroundColor release];
[super dealloc];
}