ObjFW  Check-in [00bcec95bf]

Overview
Comment:utils/ofhttp: Fix two missing releases in dealloc
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 00bcec95bffeeef98199b58b4bbf90ca0129854e3eb31c6933eb7d6dfb96e441
User & Date: js on 2015-05-31 14:56:24
Other Links: manifest | tags
Context
2015-06-01
18:27
OFKernelEventObserver_select: Small Win64 fix check-in: 734fbbb144 user: js tags: trunk
2015-05-31
14:56
utils/ofhttp: Fix two missing releases in dealloc check-in: 00bcec95bf user: js tags: trunk
2015-05-29
23:22
utils/ofhttp: Fix a typo resulting in wrong ETA check-in: 3e5b766b40 user: js tags: trunk
Changes

Modified utils/ofhttp/ProgressBar.m from [a7f6535d56] to [541aee4c03].

68
69
70
71
72
73
74


75
76
77
78
79
80
81
	return self;
}

- (void)dealloc
{
	[self stop];



	[_drawTimer release];
	[_BPSTimer release];

	[super dealloc];
}

- (void)setReceived: (intmax_t)received







>
>







68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
	return self;
}

- (void)dealloc
{
	[self stop];

	[_startDate release];
	[_lastReceivedDate release];
	[_drawTimer release];
	[_BPSTimer release];

	[super dealloc];
}

- (void)setReceived: (intmax_t)received