mattconnolly / ZipArchive

zip archive processing for Cocoa - iPhone and OS X
http://code.google.com/p/ziparchive/
MIT License
840 stars 260 forks source link

Fix Xcode analyze warnings. #55

Closed JessThrysoee closed 2 years ago

JessThrysoee commented 9 years ago

For "Value stored to 'p' is never read", add a "(void)p;" statement to silence the analyze warning. We could also just delete the increment but that might cause a future bug if 'p' is used in new code after this block.

Fixes #53 Fixes #43