A colleague of mine has a piece of code which compressed/encodes a file (snippet below):
#define DATA_PRECISION 32
#define BITS_PER_BYTE 8
#define UNIT 1
#define ZLIB_COMP_FACT_1 0.1
#define ZLIB_COMP_FACT_2 12
length=(counter * DATA_PRECISION / BITS_PER_BYTE);
comp_length= (uLongf)(length + (length * ZLIB_COMP_FACT_1) + ZLIB_COMP_FACT_2);
comp_buffer = (Byte*)calloc((uInt) comp_length , UNIT);
/* mz values */
error=compress2(comp_buffer, &comp_length,(const Bytef*)data.mz,(uLongf)length,Z_DEFAULT_COMPRESSION); /* compression */
if (error != Z_OK) {fprintf(stderr,"zlib error..exiting"); exit(EXIT_FAILURE);}
mz_binary=g_base64_encode (comp_buffer,comp_length); /* encoding */
mz_length=strlen(mz_binary);
I have written some code which doesn't do what i want, therefore i would like some pointers on the syntax of uncompress.
The zlib documentation states that the syntax is as follows:
ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,const Bytef *source, uLong sourceLen));
The decoded source is in a gchar *decoded_result variable, the length of the source is in a gsize decoded_length, the length of the uncompressed element is in (glycan+teller)->decoded_length (defined as int decoded length in the struct) and i declared a new variable guchar *uncompressed_result to store the element in.
I tried syntax like:
uncompressed_result=(char*)malloc(sizeof(char)*MAX_SIZE1);
uncompress(uncompressed_result,*((glycan+teller)->decoded_length),decoded_result,ulong)decoded_length);
Yet it returns either a segmenation fault or the wrong output (after twiddling a bit), does anyone have any idea where i am going wrong?
Thanks in advance, Bas Jansen
PS: Edited a large chunk of my code away and only put the relevant stuff there (i think).
decoded_resultwhen callingmalloc()is lost,g_base64_decode()allocates its own buffer, and you overwrite your pointer with glib's. – unwind Dec 21 '11 at 12:40