Toggle navigation
Toggle navigation
This project
Loading...
Sign in
iOS
/
asi-http-request
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Art Gillespie
2011-08-23 22:34:57 -0700
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
dd83a4043d53461385c2af48bc7ed8ffe0b09eb5
dd83a404
1 parent
90e5fbce
Cast `void *` values from NSData to types to eliminate compile errors
when compiling with objective-c++.
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
Classes/ASIDataCompressor.m
Classes/ASIDataCompressor.m
View file @
dd83a40
...
...
@@ -88,7 +88,7 @@
[
outputData
increaseLengthBy
:
halfLength
];
}
zStream
.
next_out
=
[
outputData
mutableBytes
]
+
zStream
.
total_out
-
bytesProcessedAlready
;
zStream
.
next_out
=
(
Bytef
*
)
[
outputData
mutableBytes
]
+
zStream
.
total_out
-
bytesProcessedAlready
;
zStream
.
avail_out
=
(
unsigned
int
)([
outputData
length
]
-
(
zStream
.
total_out
-
bytesProcessedAlready
));
status
=
deflate
(
&
zStream
,
shouldFinish
?
Z_FINISH
:
Z_NO_FLUSH
);
...
...
@@ -184,7 +184,7 @@
}
// Write the deflated data out to the destination file
[
outputStream
write
:[
outputData
bytes
]
maxLength
:[
outputData
length
]];
[
outputStream
write
:
(
const
uint8_t
*
)
[
outputData
bytes
]
maxLength
:[
outputData
length
]];
// Make sure nothing went wrong
if
([
inputStream
streamStatus
]
==
NSStreamEventErrorOccurred
)
{
...
...
Please
register
or
login
to post a comment