0

我在我们的应用程序中使用了 lzo 库。提供的版本是 1.07。他们给了我 .lib 以及一些头文件和一些 .c 源文件。

我已经按照规格设置了测试环境。我可以在我的应用程序中看到 lzo 例程函数。

这是我的测试应用程序

#include "stdafx.h"
#include "lzoconf.h"
#include "lzo1z.h"
#include <stdlib.h>


int _tmain(int argc, _TCHAR* argv[])
{
    FILE * pFile;
    long lSize;
    unsigned char *i_buff;
    unsigned char *o_buff;

    int i_len,e = 0;
    unsigned int o_len;

    size_t result;

    //data.txt have a single compressed packet 
    pFile = fopen("data.txt","rb");

    if (pFile==NULL) 
        return -1;

    // obtain file size:
    fseek (pFile , 0 , SEEK_END);
    lSize = ftell (pFile);
    rewind (pFile);

    // allocate memory to contain the whole file:
    i_buff = (unsigned char*) malloc (sizeof(char)*lSize);
    if (i_buff == NULL) 
        return -1;

    // copy the file into the buffer:
    result = fread (i_buff,1,lSize,pFile);
    if (result != lSize) 
        return -1;

    i_len = lSize;
    o_len = 512;

    // allocate memory for output buffer
    o_buff = (unsigned char*) malloc(sizeof(char)*o_len);

    if (o_buff == NULL) 
        return -1;
     lzo_memset(o_buff,0,o_len);    
    lzo1z_decompress(i_buff,i_len,o_buff,&o_len,NULL);

    return 0;   
}

它在最后一行给出访问冲突。

lzo1z_decompress(i_buff,i_len,o_buff,&o_len,NULL);

在为上述功能提供的库签名中是

lzo1z_decompress        ( const lzo_byte *src, lzo_uint  src_len,
                                lzo_byte *dst, lzo_uint *dst_len,
                                lzo_voidp wrkmem /* NOT USED */ );

怎么了?

4

2 回答 2

0

你确定 512 字节对于解压缩的数据足够大吗?您不应该使用任意值,而是应该在压缩文件时将原始大小作为标题存放在某处:

LZO 解压缓冲区大小

您可能应该使您的数据类型与接口规范相匹配(例如o_len,应该是lzo_uint...您正在传递一个地址,因此实际的底层类型很重要)。

除此之外,它是开源的。那么为什么不使用调试信息构建 lzo 并进入它以查看问题所在呢?

http://www.oberhumer.com/opensource/lzo/

于 2010-03-10T09:01:09.287 回答
-1

谢谢大家的建议和评论。

问题出在数据上。我已经成功解压了。

于 2010-03-11T08:27:13.063 回答