mirror of https://github.com/libAthena/athena.git
commit
3276e00864
|
@ -108,8 +108,8 @@ atInt32 compressZlib(const atUint8 *src, atUint32 srcLen, atUint8* dst, atUint32
|
||||||
atInt32 decompressLZO(const atUint8* source, const atInt32 sourceSize, atUint8* dst, atInt32& dstSize)
|
atInt32 decompressLZO(const atUint8* source, const atInt32 sourceSize, atUint8* dst, atInt32& dstSize)
|
||||||
{
|
{
|
||||||
int srcSize = sourceSize;
|
int srcSize = sourceSize;
|
||||||
int size = dstSize;
|
lzo_uint size = dstSize;
|
||||||
int result = lzo1x_decompress_safe(source, srcSize, dst, (lzo_uintp)&size, NULL);
|
int result = lzo1x_decompress_safe(source, srcSize, dst, &size, NULL);
|
||||||
dstSize -= size;
|
dstSize -= size;
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|
Loading…
Reference in New Issue