sylvain.bonnemaison Apprentice
Joined: 13 Jan 2008 Posts: 152
|
Posted: Sun Apr 01, 2012 8:07 pm Post subject: [cups] canon mp540 |
|
|
Hi,
I'm cannot install canon mp540 driver on my x86-64 platform. I get this error :
Code: | bjfimage.c:1578:6: erreur: déréférencement d'un pointeur de type incomplet |
The target source code is the following :
Code: | /*-- call pnglib function --*/
png_p = png_create_read_struct (PNG_LIBPNG_VER_STRING, NULL, NULL, NULL);
if (png_p == NULL){
goto onErr;
}
info_p = png_create_info_struct (png_p);
if (info_p==NULL){
png_destroy_read_struct(&png_p, (png_infopp)NULL, (png_infopp)NULL);
goto onErr;
}
[b]if (setjmp (png_p->jmpbuf))[/b]
{
png_destroy_read_struct(&png_p, &info_p, (png_infopp)NULL);
goto onErr;
} |
Is there an option to install this driver with success? Or any idea to fix it?
Thanks |
|