aboutsummaryrefslogtreecommitdiff
path: root/C/Lzma2Dec.c
diff options
context:
space:
mode:
authorIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-06-21 00:00:00 +0000
committerIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-12-17 14:59:19 +0500
commit5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch)
treefe5e17420300b715021a76328444088d32047963 /C/Lzma2Dec.c
parent93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff)
download7zip-23.01.tar.gz
7zip-23.01.tar.bz2
7zip-23.01.zip
23.0123.01
Diffstat (limited to 'C/Lzma2Dec.c')
-rw-r--r--C/Lzma2Dec.c12
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
22021-02-09 : Igor Pavlov : Public domain */ 22023-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)
71SRes Lzma2Dec_AllocateProbs(CLzma2Dec *p, Byte prop, ISzAllocPtr alloc) 71SRes 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
78SRes Lzma2Dec_Allocate(CLzma2Dec *p, Byte prop, ISzAllocPtr alloc) 78SRes 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