26 lines
903 B
Diff
26 lines
903 B
Diff
# http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/mail-filter/spamprobe/files/spamprobe-1.4d-libpng14.patch
|
|
|
|
--- src/parser/PngParser.cc
|
|
+++ src/parser/PngParser.cc
|
|
@@ -53,9 +53,9 @@
|
|
{
|
|
if (m_initialized) {
|
|
if (m_infoPtr) {
|
|
- png_destroy_read_struct(&m_pngPtr, &m_infoPtr, png_infopp_NULL);
|
|
+ png_destroy_read_struct(&m_pngPtr, &m_infoPtr, NULL);
|
|
} else {
|
|
- png_destroy_read_struct(&m_pngPtr, png_infopp_NULL, png_infopp_NULL);
|
|
+ png_destroy_read_struct(&m_pngPtr, NULL, NULL);
|
|
}
|
|
}
|
|
}
|
|
@@ -104,7 +104,7 @@
|
|
int bit_depth, color_type, interlace_type;
|
|
|
|
png_get_IHDR(m_pngPtr, m_infoPtr, &width, &height, &bit_depth, &color_type,
|
|
- &interlace_type, int_p_NULL, int_p_NULL);
|
|
+ &interlace_type, (int *) NULL, (int *) NULL);
|
|
|
|
string base_token("image_0");
|
|
sendToken(base_token + "_height_" + num_to_string((int)width));
|