File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -122,7 +122,7 @@ static lzma_vli find_file_index(void **bdatap) {
122
122
lzma_vli loc = lzma_index_uncompressed_size (gIndex ) - 1 ;
123
123
if (lzma_index_iter_locate (& iter , loc ))
124
124
die ("Can't locate file index block" );
125
- if (iter .stream .number != 1 )
125
+ if (iter .stream .number != 1 )
126
126
return 0 ; // Too many streams for one file index
127
127
128
128
void * bdata = decode_file_index_start (iter .block .compressed_file_offset ,
@@ -310,7 +310,7 @@ static lzma_index *next_index(off_t *pos) {
310
310
if (fseeko (gInFile , * pos , SEEK_SET ) == -1 )
311
311
die ("Error seeking to index" );
312
312
313
- lzma_stream strm = LZMA_STREAM_INIT ;
313
+ lzma_stream strm = LZMA_STREAM_INIT ;
314
314
lzma_index * index ;
315
315
if (lzma_index_decoder (& strm , & index , MEMLIMIT ) != LZMA_OK )
316
316
die ("Error creating index decoder" );
You can’t perform that action at this time.
0 commit comments