Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 380127 | Differences between
and this patch

Collapse All | Expand All

(-)xbmc-10.1.orig/xbmc/lib/cximage-6.0/CxImage/ximapng.h (-2 / +2 lines)
Lines 69-76 Link Here
69
69
70
    static void PNGAPI user_error_fn(png_structp png_ptr,png_const_charp error_msg)
70
    static void PNGAPI user_error_fn(png_structp png_ptr,png_const_charp error_msg)
71
	{
71
	{
72
		strncpy((char*)png_ptr->error_ptr,error_msg,255);
72
		strncpy((char*)png_get_error_ptr(png_ptr),error_msg,255);
73
		longjmp(png_ptr->jmpbuf, 1);
73
		longjmp(png_jmpbuf(png_ptr), 1);
74
	}
74
	}
75
};
75
};
76
76

Return to bug 380127