By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 603
Collapse All | Expand All

(-)/dev/shm/applications/koffice/filters/chalk/png/kis_png_converter.cc (-1 / +1 lines)
Lines 785-791 Link Here
785
785
786
void KisPNGConverter::progress(png_structp png_ptr, png_uint_32 row_number, int pass)
786
void KisPNGConverter::progress(png_structp png_ptr, png_uint_32 row_number, int pass)
787
{
787
{
788
    if(png_ptr == NULL || row_number > PNG_MAX_UINT || pass > 7) return;
788
    if(png_ptr == NULL || row_number > PNG_UINT_31_MAX || pass > 7) return;
789
//     setProgress(row_number);
789
//     setProgress(row_number);
790
}
790
}
791
791

Return to bug 603