Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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).

share|improve this question
As a side note, you're leaking memory since the buffer assigned to decoded_result when calling malloc() is lost, g_base64_decode() allocates its own buffer, and you overwrite your pointer with glib's. – unwind Dec 21 '11 at 12:40
I wondered why it worked when i hadn't allocated memory to decoded_result already. I know why now, thanks ;) – Bas Jansen Dec 21 '11 at 12:52

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.