Changeset 494
- Timestamp:
- 10/27/09 07:17:37 (4 weeks ago)
- Location:
- ImageMagick/trunk/coders
- Files:
-
- 5 modified
Legend:
- Unmodified
- Added
- Removed
-
ImageMagick/trunk/coders/cmyk.c
r79 r494 1081 1081 scene++; 1082 1082 } while (count == (ssize_t) length); 1083 InheritException(exception,&image->exception);1084 1083 quantum_info=DestroyQuantumInfo(quantum_info); 1084 InheritException(&image->exception,&canvas_image->exception); 1085 1085 canvas_image=DestroyImage(canvas_image); 1086 1086 (void) CloseBlob(image); -
ImageMagick/trunk/coders/gray.c
r78 r494 277 277 } while (count == (ssize_t) length); 278 278 quantum_info=DestroyQuantumInfo(quantum_info); 279 InheritException( exception,&canvas_image->exception);279 InheritException(&image->exception,&canvas_image->exception); 280 280 canvas_image=DestroyImage(canvas_image); 281 281 (void) CloseBlob(image); -
ImageMagick/trunk/coders/raw.c
r273 r494 275 275 } while (count == (ssize_t) length); 276 276 quantum_info=DestroyQuantumInfo(quantum_info); 277 InheritException( exception,&canvas_image->exception);277 InheritException(&image->exception,&canvas_image->exception); 278 278 canvas_image=DestroyImage(canvas_image); 279 279 (void) CloseBlob(image); -
ImageMagick/trunk/coders/rgb.c
r79 r494 596 596 scene++; 597 597 } while (count == (ssize_t) length); 598 InheritException(exception,&image->exception);599 598 quantum_info=DestroyQuantumInfo(quantum_info); 599 InheritException(&image->exception,&canvas_image->exception); 600 600 canvas_image=DestroyImage(canvas_image); 601 601 (void) CloseBlob(image); -
ImageMagick/trunk/coders/ycbcr.c
r79 r494 839 839 scene++; 840 840 } while (count == (ssize_t) length); 841 InheritException(exception,&image->exception);842 841 quantum_info=DestroyQuantumInfo(quantum_info); 842 InheritException(&image->exception,&canvas_image->exception); 843 843 canvas_image=DestroyImage(canvas_image); 844 844 (void) CloseBlob(image);
