@@ -35,11 +35,11 @@ uint8_t _buffer[OF_INFLATE_STREAM_BUFFER_SIZE]; uint16_t _bufferIndex, _bufferLength; uint8_t _byte; uint8_t _bitIndex, _savedBitsLength; uint16_t _savedBits; - uint8_t *_slidingWindow; + uint8_t *_Nullable _slidingWindow; uint16_t _slidingWindowIndex, _slidingWindowMask; int _state; union { struct { uint8_t position; @@ -47,20 +47,23 @@ } uncompressedHeader; struct { uint16_t position, length; } uncompressed; struct { - struct huffman_tree *litLenTree, *distTree; - struct huffman_tree *codeLenTree, *treeIter; - uint8_t *lengths; + struct huffman_tree *_Nullable litLenTree; + struct huffman_tree *_Nullable distTree; + struct huffman_tree *_Nullable codeLenTree; + struct huffman_tree *_Nullable treeIter; + uint8_t *_Nullable lengths; uint16_t receivedCount; uint8_t value, litLenCodesCount, distCodesCount; uint8_t codeLenCodesCount; } huffmanTree; struct { - struct huffman_tree *litLenTree, *distTree; - struct huffman_tree *treeIter; + struct huffman_tree *_Nullable litLenTree; + struct huffman_tree *_Nullable distTree; + struct huffman_tree *_Nullable treeIter; int state; uint16_t value, length, distance, extraBits; } huffman; } _context; bool _inLastBlock, _atEndOfStream;