mirror of
https://github.com/aaru-dps/libaaruformat.git
synced 2025-12-16 19:24:40 +00:00
Fix CST.
This commit is contained in:
@@ -342,8 +342,6 @@ void* aaruf_open(const char* filepath)
|
||||
|
||||
if(blockHeader.compression == LzmaClauniaSubchannelTransform)
|
||||
{
|
||||
// TODO: Needs to fix!
|
||||
/*
|
||||
cstData = malloc(blockHeader.length);
|
||||
if(cstData == NULL)
|
||||
{
|
||||
@@ -355,9 +353,8 @@ void* aaruf_open(const char* filepath)
|
||||
|
||||
aaruf_cst_untransform(data, cstData, blockHeader.length);
|
||||
free(data);
|
||||
data = cstData;
|
||||
data = cstData;
|
||||
cstData = NULL;
|
||||
*/
|
||||
}
|
||||
|
||||
free(cmpData);
|
||||
|
||||
Reference in New Issue
Block a user