vote up -1 vote down star

I copied this code from the libjpeg example and im passing it standard files;

FILE *soureFile;
if ((soureFile = fopen(sourceFilename, "rb")) == NULL)
{
    fprintf(stderr, "can't open %s\n", sourceFilename);
    exit(1);
}

jpeg_stdio_src(&jpegDecompress, soureFile);
jpeg_read_header(&jpegDecompress, true);

It results in a file pointer that contains no information and therefore breaks on the last line with access violations. Any ideas?

EDIT: On Tobias' advice the fopen does appear to open the file ok but the jpeg_read_header is in turn failing with the access violation still.

EDIT: After a little more digging
http://stackoverflow.com/questions/391917/jpeg-support-with-ijg-getting-access-violation

flag

78% accept rate
1  
Are you sure that the rest of the code isn't at fault, and that the file contains what you think it does? – Ori Pessach Jun 2 at 12:22
I am still not clear. Is fopen() the above code returning NULL or not? – Neil Butterworth Jun 2 at 12:23
if sourceFile != NULL, then fopen succeded. Could you try to read from sourceFile to rule the fopen-part out (for example using fgetc). – Tobias Langner Jun 2 at 12:23
@Neil: fopen returns a file *, whose properties are <bad ptr>'s. Does this make sense? – Adam Naylor Jun 2 at 12:25
2  
The programmer is not really supposed to make use of the individual fields of a FILE struct. The fact that it contains bad pointers does not necessarily mean that the structure is corrupted, but rather that those fields are not meant to be used - or used as pointers - at the time you read it. – RaphaelSP Jun 2 at 12:32
show 7 more comments

2 Answers

vote up 1 vote down check

"select isn't broken".

If fopen returned a valid file pointer, and jpeg_read_header can't use it, someone between those two statements has done something bad to it.

The only one in between is the jpg_stdio_src call, which wouldn't fail if all it's preconditions are fulfilled.

Bottom line: see why jpg_stdio_src fails. My guess: it needs to be constructed using the jpeg_create_decompress macro.

link|flag
vote up 2 vote down

Use strerror or perror to get exact reason:

FILE *soureFile;
if ((soureFile = fopen(sourceFilename, "rb")) == NULL)
{
    perror("fopen failed");
    exit(1);
}
link|flag
Didn't know about those thanks. However due to the valid pointer being return from fopen, this line will never be hit. – Adam Naylor Jun 2 at 12:21
1  
So in fact fopen() is working and the problem is with your jpeg code! – Neil Butterworth Jun 2 at 12:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.