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 298
Collapse All | Expand All

(-)libpng-1.4.5/pngrutil.c (+2 lines)
Lines 13-18 Link Here
13
 * This file contains routines that are only called from within
13
 * This file contains routines that are only called from within
14
 * libpng itself during the course of reading an image.
14
 * libpng itself during the course of reading an image.
15
 */
15
 */
16
#include <signal.h>
16
17
17
#define PNG_NO_PEDANTIC_WARNINGS
18
#define PNG_NO_PEDANTIC_WARNINGS
18
#include "png.h"
19
#include "png.h"
Lines 758-763 Link Here
758
      {
759
      {
759
         png_warning(png_ptr,
760
         png_warning(png_ptr,
760
           "Ignoring gAMA chunk with gamma=0");
761
           "Ignoring gAMA chunk with gamma=0");
762
	 raise (SIGUSR1);
761
         return;
763
         return;
762
      }
764
      }
763
765

Return to bug 298