I'm using this code snippet which I grabbed from a tutorial. It's meant to compress the data from an input file and put it into the output file. However, it gives a segmentation fault when running though:
int map_Compress(char *inmapfile, char *outmapfile)
{
FILE *infile = fopen(inmapfile, "rb");
gzFile outfile = gzopen(outmapfile, "wb");
if (!infile || !outfile) return -1;
char inbuffer[1];
int num_read = 0;
unsigned long total_read = 0;
while ((num_read = fread(&inbuffer, 1, sizeof(inbuffer), infile)) > 0)
{
printf("%d\n",total_read);
total_read += num_read;
gzwrite(outfile, inbuffer, num_read);
}
fclose(infile);
gzclose(outfile);
return total_read;
}
And it's being called like this:
int main()
{
if (map_Compress("maps/main.map", "maps/main.mz") < 0)
{
printf("Compression failed, couldn't open file(s)\n");
}
return 0;
}
What's with this segfault? All I see on the screen when this is called is:
0
1
And then the program crashes... What's going wrong here? My input file has some garbage content that I put in there, so shouldn't the function be compressing the data into the output file?
Please help, I'm sure it's a simple problem I've overlooked :)
unsigned char in buffer[1024];for example). – WhozCraig Nov 3 '12 at 9:33printf()conversion specifier does not match, what is being passed in.num_readandtotal_readshall be declared ofsize_t. – alk Nov 3 '12 at 15:45map_Compress(). – alk Nov 3 '12 at 15:53