I am doing a problem set based on c language. Source code gets compiled without any syntax error and I am pretty sure about the symantics too. I tried to spot the error using GDB. This is where I noticed the the content at the adress pointed by the tempstorage chances at each iteration but the first int remains the same ( i.e. 0 ). This is recover.c problem in the cs50 course. I had posted the previous versions of the same program at cs50-stackexchagne but the answers wheren't much helpful. Thank you
/**
* recover.c
*
* Computer Science 50
* Problem Set 4
*
* Recovers JPEGs from a forensic image.
*/
#include <stdio.h>
#include <stdlib.h>
int main()
{
FILE* sdcard = fopen("card.raw", "r");
// to check if the file is opened correctly or not
if ( sdcard == NULL)
{
printf("corrupted sd card");
return 1;
}
// file pointer to point to the temporary jpg
FILE* tempjpgg;
// for the nomenclauture of the jpg photos
char* jpegname = (char*)malloc(8);
// to read 512 bytes of data at a time from the sdcard
char* tempstorage = (char*)malloc(512);
int firstint;
int i = 0;
for (fread(tempstorage, 512, 1,sdcard); ; )
{
sscanf(tempstorage, "%d", &firstint); // to make the checking process easier
if ( firstint >= 0xffd8ffe0 && firstint <= 0xffd8ffef)
{
fclose(tempjpgg);
sprintf(jpegname, "%03d.jpg", i);
tempjpgg = fopen(jpegname, "w");
fprintf(tempjpgg, "%d", firstint);
fwrite( tempstorage, 508, 1, tempjpgg);
i++;
}
else if ( i != 0)
{
fprintf(tempjpgg,"%d", firstint);
fwrite(tempstorage, 508, 1, tempjpgg);
}
fread(tempstorage, 512, 1, sdcard);
}
return 0;
}