Skip to content

Commit

Permalink
Fixing warning in GCDAsyncSocket
Browse files Browse the repository at this point in the history
  • Loading branch information
robbiehanson committed Mar 24, 2013
1 parent 87397ae commit b27738e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Vendor/CocoaAsyncSocket/GCDAsyncSocket.m
Original file line number Diff line number Diff line change
Expand Up @@ -4244,8 +4244,8 @@ - (void)doReadData
return;
}

BOOL hasBytesAvailable;
unsigned long estimatedBytesAvailable;
BOOL hasBytesAvailable = NO;
unsigned long estimatedBytesAvailable = 0;

if ([self usingCFStreamForTLS])
{
Expand Down

0 comments on commit b27738e

Please sign in to comment.