Changeset 5095 for ImageMagick/trunk/coders/png.c
- Timestamp:
- 08/29/11 21:44:23 (21 months ago)
- File:
-
- 1 edited
-
ImageMagick/trunk/coders/png.c (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ImageMagick/trunk/coders/png.c
r5094 r5095 2888 2888 q=QueueAuthenticPixels(image,0,y,image->columns,1,exception); 2889 2889 2890 if (q == ( constQuantum *) NULL)2890 if (q == (Quantum *) NULL) 2891 2891 break; 2892 2892 … … 3008 3008 q=GetAuthenticPixels(image,0,y,image->columns,1,exception); 3009 3009 3010 if (q == ( constQuantum *) NULL)3010 if (q == (Quantum *) NULL) 3011 3011 break; 3012 3012 … … 3150 3150 q=GetAuthenticPixels(image,0,y,image->columns,1,exception); 3151 3151 3152 if (q == ( constQuantum *) NULL)3152 if (q == (Quantum *) NULL) 3153 3153 break; 3154 3154 for (x=0; x < (ssize_t) image->columns; x++) … … 3279 3279 q=GetAuthenticPixels(image,0,y,image->columns,1,exception); 3280 3280 3281 if (q == ( constQuantum *) NULL)3281 if (q == (Quantum *) NULL) 3282 3282 break; 3283 3283 … … 7977 7977 q=GetAuthenticPixels(image,0,y,image->columns,1,exception); 7978 7978 7979 if (q == ( constQuantum *) NULL)7979 if (q == (Quantum *) NULL) 7980 7980 break; 7981 7981 … … 8142 8142 q=GetAuthenticPixels(image,0,y,image->columns,1,exception); 8143 8143 8144 if (q == ( constQuantum *) NULL)8144 if (q == (Quantum *) NULL) 8145 8145 break; 8146 8146 … … 8279 8279 exception); 8280 8280 8281 if (q == ( constQuantum *) NULL)8281 if (q == (Quantum *) NULL) 8282 8282 break; 8283 8283 … … 8697 8697 q=GetVirtualPixels(image,0,y,image->columns,1, exception); 8698 8698 8699 if (q == ( constQuantum *) NULL)8699 if (q == (Quantum *) NULL) 8700 8700 break; 8701 8701
Note: See TracChangeset
for help on using the changeset viewer.
