Patched to compile.
This commit is contained in:
parent
9d42a71574
commit
7fc64a99cc
|
@ -289,7 +289,9 @@ static PHYSFS_sint64 LZMA_read(fvoid *opaque, void *outBuffer,
|
||||||
|
|
||||||
/* Only decompress the folder if it is not allready cached */
|
/* Only decompress the folder if it is not allready cached */
|
||||||
if (entry->archive->folder[entry->folderIndex].cache == NULL)
|
if (entry->archive->folder[entry->folderIndex].cache == NULL)
|
||||||
if (lzma_err(SzExtract(
|
{
|
||||||
|
size_t tmpsize = entry->archive->folder[entry->folderIndex].size;
|
||||||
|
int rc = lzma_err(SzExtract(
|
||||||
&entry->archive->stream.InStream, /* compressed data */
|
&entry->archive->stream.InStream, /* compressed data */
|
||||||
&entry->archive->db,
|
&entry->archive->db,
|
||||||
entry->fileIndex,
|
entry->fileIndex,
|
||||||
|
@ -298,14 +300,17 @@ static PHYSFS_sint64 LZMA_read(fvoid *opaque, void *outBuffer,
|
||||||
/* Cache for decompressed folder, allocated/freed by SzExtract */
|
/* Cache for decompressed folder, allocated/freed by SzExtract */
|
||||||
&entry->archive->folder[entry->folderIndex].cache,
|
&entry->archive->folder[entry->folderIndex].cache,
|
||||||
/* Size of cache, will be changed by SzExtract */
|
/* Size of cache, will be changed by SzExtract */
|
||||||
&entry->archive->folder[entry->folderIndex].size,
|
&tmpsize,
|
||||||
/* Offset of this file inside the cache, set by SzExtract */
|
/* Offset of this file inside the cache, set by SzExtract */
|
||||||
&entry->offset,
|
&entry->offset,
|
||||||
&fileSize, /* Size of this file */
|
&fileSize, /* Size of this file */
|
||||||
&allocImp,
|
&allocImp,
|
||||||
&allocTempImp
|
&allocTempImp));
|
||||||
)) != SZ_OK)
|
|
||||||
|
entry->archive->folder[entry->folderIndex].size = tmpsize;
|
||||||
|
if (rc != SZ_OK)
|
||||||
return -1;
|
return -1;
|
||||||
|
} /* if */
|
||||||
|
|
||||||
/* Copy wanted bytes over from cache to outBuffer */
|
/* Copy wanted bytes over from cache to outBuffer */
|
||||||
strncpy(outBuffer,
|
strncpy(outBuffer,
|
||||||
|
|
Loading…
Reference in New Issue