Output of console output with bit length overflow

When I launch my application, I get this output to the console:

overflow bit code 11 bit 7-> 5 code 16 bit 4-> 5

overflow bits code 4 bits 6-> 7

overflow bits code 3 bits 6-> 7 code 0 bits 6-> 7

overflow bit code 16 bit 4-> 5

overflow bits code 4 bits 6-> 7 code 5 bits 6-> 5 code 16 bits 4-> 5

overflow bit code 16 bit 4-> 5

overflow bit code 0 bit 6-> 7

overflow bit code 11 bit 6-> 7

The application zips up 3 files and saves them in a folder with documents, and everything seems to be OK .... except for this exit.

UPDATED:

NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; @try { NSString *docsPath =[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject]; NSString *filePath = [docsPath stringByAppendingPathComponent:@"ZipTest.zip"]; ZipFile *zipFile = [[ZipFile alloc] initWithFileName:filePath mode:ZipFileModeCreate]; ZipWriteStream *stream; if (self.textSwitch.on) { stream = [zipFile writeFileInZipWithName:@"text.txt" compressionLevel:ZipCompressionLevelBest]; } [zipFile close]; [zipFile release]; } @catch (ZipException *ze) {} @catch (id e) {} [pool drain]; 

What does it mean?

thanks

+6
source share

Source: https://habr.com/ru/post/889651/


All Articles