diff options
Diffstat (limited to '')
-rw-r--r-- | C/Lzma2Dec.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/C/Lzma2Dec.c b/C/Lzma2Dec.c index ac970a8..388cbc7 100644 --- a/C/Lzma2Dec.c +++ b/C/Lzma2Dec.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* Lzma2Dec.c -- LZMA2 Decoder | 1 | /* Lzma2Dec.c -- LZMA2 Decoder |
2 | 2021-02-09 : Igor Pavlov : Public domain */ | 2 | 2023-03-03 : Igor Pavlov : Public domain */ |
3 | 3 | ||
4 | /* #define SHOW_DEBUG_INFO */ | 4 | /* #define SHOW_DEBUG_INFO */ |
5 | 5 | ||
@@ -71,14 +71,14 @@ static SRes Lzma2Dec_GetOldProps(Byte prop, Byte *props) | |||
71 | SRes Lzma2Dec_AllocateProbs(CLzma2Dec *p, Byte prop, ISzAllocPtr alloc) | 71 | SRes Lzma2Dec_AllocateProbs(CLzma2Dec *p, Byte prop, ISzAllocPtr alloc) |
72 | { | 72 | { |
73 | Byte props[LZMA_PROPS_SIZE]; | 73 | Byte props[LZMA_PROPS_SIZE]; |
74 | RINOK(Lzma2Dec_GetOldProps(prop, props)); | 74 | RINOK(Lzma2Dec_GetOldProps(prop, props)) |
75 | return LzmaDec_AllocateProbs(&p->decoder, props, LZMA_PROPS_SIZE, alloc); | 75 | return LzmaDec_AllocateProbs(&p->decoder, props, LZMA_PROPS_SIZE, alloc); |
76 | } | 76 | } |
77 | 77 | ||
78 | SRes Lzma2Dec_Allocate(CLzma2Dec *p, Byte prop, ISzAllocPtr alloc) | 78 | SRes Lzma2Dec_Allocate(CLzma2Dec *p, Byte prop, ISzAllocPtr alloc) |
79 | { | 79 | { |
80 | Byte props[LZMA_PROPS_SIZE]; | 80 | Byte props[LZMA_PROPS_SIZE]; |
81 | RINOK(Lzma2Dec_GetOldProps(prop, props)); | 81 | RINOK(Lzma2Dec_GetOldProps(prop, props)) |
82 | return LzmaDec_Allocate(&p->decoder, props, LZMA_PROPS_SIZE, alloc); | 82 | return LzmaDec_Allocate(&p->decoder, props, LZMA_PROPS_SIZE, alloc); |
83 | } | 83 | } |
84 | 84 | ||
@@ -474,8 +474,8 @@ SRes Lzma2Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, | |||
474 | SizeT outSize = *destLen, inSize = *srcLen; | 474 | SizeT outSize = *destLen, inSize = *srcLen; |
475 | *destLen = *srcLen = 0; | 475 | *destLen = *srcLen = 0; |
476 | *status = LZMA_STATUS_NOT_SPECIFIED; | 476 | *status = LZMA_STATUS_NOT_SPECIFIED; |
477 | Lzma2Dec_Construct(&p); | 477 | Lzma2Dec_CONSTRUCT(&p) |
478 | RINOK(Lzma2Dec_AllocateProbs(&p, prop, alloc)); | 478 | RINOK(Lzma2Dec_AllocateProbs(&p, prop, alloc)) |
479 | p.decoder.dic = dest; | 479 | p.decoder.dic = dest; |
480 | p.decoder.dicBufSize = outSize; | 480 | p.decoder.dicBufSize = outSize; |
481 | Lzma2Dec_Init(&p); | 481 | Lzma2Dec_Init(&p); |
@@ -487,3 +487,5 @@ SRes Lzma2Decode(Byte *dest, SizeT *destLen, const Byte *src, SizeT *srcLen, | |||
487 | Lzma2Dec_FreeProbs(&p, alloc); | 487 | Lzma2Dec_FreeProbs(&p, alloc); |
488 | return res; | 488 | return res; |
489 | } | 489 | } |
490 | |||
491 | #undef PRF | ||