mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-06 03:33:41 +02:00
Fix memory mgmt bug
This commit is contained in:
parent
23e2183c87
commit
e31cdb41ab
1 changed files with 2 additions and 1 deletions
|
|
@ -288,7 +288,7 @@
|
|||
_requireAuthorization = NO;
|
||||
_authenticationSecret = nil;
|
||||
_lastCheck = nil;
|
||||
_uuid = [self executableUUID];
|
||||
_uuid = [[self executableUUID] retain];
|
||||
_sendUsageData = YES;
|
||||
|
||||
// set defaults
|
||||
|
|
@ -355,6 +355,7 @@
|
|||
[_lastCheck release];
|
||||
[_usageStartTimestamp release];
|
||||
[_authenticationSecret release];
|
||||
[_uuid release];
|
||||
|
||||
[super dealloc];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue