- 13 Oct, 2017 1 commit
-
-
Henry L authored
-
- 27 Dec, 2014 3 commits
- 02 Apr, 2014 2 commits
-
-
- Implicit integer conversions that change the signedness of an integer value (-Wsign-conversion); - Implicit atomic @property declarations (-Wno-implicit-atomic-properties);
Jardel Weyrich authored
- 01 Apr, 2014 1 commit
- 28 Mar, 2014 2 commits
- 29 Dec, 2013 1 commit
-
-
Fix iOS 7 warnings for dismissModalViewControllerAnimated and presentModalViewController
Joseph Heenan authored
-
- 27 Dec, 2013 1 commit
-
-
Adam Wulf authored
-
- 26 Dec, 2013 1 commit
- 02 Dec, 2013 1 commit
- 26 Nov, 2013 1 commit
-
-
Ari Weinstein authored
-
- 12 Nov, 2013 1 commit
-
-
Ari Weinstein authored
-
- 04 Oct, 2013 2 commits
- 06 Aug, 2013 2 commits
-
-
Error is: ASIHTTPRequest.m:4571:44: Division by zero I think this may be a false warning, or llvm is assuming that "[bandwidthUsageTracker addObject:...];" has failed for some reason, but it does no harm to double check that we're not going to divide by zero.
Joseph Heenan authored -
It seems the comparison has always been against the wrong enum, so the check would never trigger previously. The latest llvm issues a warning like this: ASIDataDecompressor.m:161:34: Comparison of constant 'NSStreamEventErrorOccurred' (8) with expression of type 'NSStreamStatus' (aka 'enum NSStreamStatus') is always false [patch from github user 'OpenFibers', thanks!]
Joseph Heenan authored
-
- 30 Jul, 2012 2 commits
-
-
Conflicts (already fixed so discarded these): Classes/ASIDataCompressor.m Classes/ASIDataDecompressor.m (and changed ASIS3BucketRequest.m to avoid the need to cast)
Joseph Heenan authored
-
- 26 Jul, 2012 1 commit
-
-
Mihai Damian authored
-
- 21 Jun, 2012 1 commit
-
-
OpenThread authored
-
- 07 Mar, 2012 2 commits
- 06 Mar, 2012 2 commits
-
-
Apparently Apple doesn't like it when asi-http synthesizes userAgent. https://github.com/pokeb/asi-http-request/issues/309
Erik Chen authored
- 22 Jan, 2012 1 commit
- 14 Jan, 2012 2 commits
-
-
Yung-Luen Lan authored
- 13 Jan, 2012 2 commits
-
-
Fixes dictionary memory leak when certificate checking is disabled. Refs #263. Problem was introduced in commit:66003748.
Joseph Heenan authored
- 01 Dec, 2011 1 commit
-
-
In iOS 5, the ASIAuthenticationDialog could not be dismissed using either the Cancel button or automatically by successfully logging in. The bug is due to a change in UIViewController in iOS 5. The class & instance "dismiss" methods are using [UIViewController parentViewController] which, as of iOS 5, no longer returns the presenting view controller. A new property called 'presentingViewController' was added in iOS 5 to make up for this. Changed the class & instance dismiss methods to use the "presentingViewController" property if it is available (iOS 5+). If not, it falls back to the "parentViewController" property.
George Cox authored
-
- 04 Nov, 2011 1 commit
-
-
A dictionary is allocated and never released. Problem was introduced in commit:66003748.
Grzegorz Adam Hankiewicz authored
-
- 18 Oct, 2011 1 commit
-
-
Previously, tasks running from inside the CFRunLoop would call CFRunLoopStop prior to finishing execution. This results in non-deterministic failures to call endBackgroundTask when running iOS tasks in the background with beginBackgroundTaskWithExpirationHandler. Since the only reason to break out of the CFRunLoop is to flush the autorelease pool, we instead invoke CFRunLoopRunInMode with returnAfterSourceHandled=True, which safely returns and flushes the autorelease pool after each invocation of the CFRunLoop.
Erik Chen authored
-
- 07 Oct, 2011 2 commits
-
-
Frédéric VERGEZ authored
- 06 Oct, 2011 1 commit
-
-
ASIFormDataRequest has a default 'GET' method (should be 'POST' by default)
Frédéric VERGEZ authored
-
- 05 Oct, 2011 2 commits
-
-
Frédéric VERGEZ authored