Changeset 494

Show
Ignore:
Timestamp:
10/27/09 07:17:37 (4 weeks ago)
Author:
cristy
Message:
 
Location:
ImageMagick/trunk/coders
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • ImageMagick/trunk/coders/cmyk.c

    r79 r494  
    10811081    scene++; 
    10821082  } while (count == (ssize_t) length); 
    1083   InheritException(exception,&image->exception); 
    10841083  quantum_info=DestroyQuantumInfo(quantum_info); 
     1084  InheritException(&image->exception,&canvas_image->exception); 
    10851085  canvas_image=DestroyImage(canvas_image); 
    10861086  (void) CloseBlob(image); 
  • ImageMagick/trunk/coders/gray.c

    r78 r494  
    277277  } while (count == (ssize_t) length); 
    278278  quantum_info=DestroyQuantumInfo(quantum_info); 
    279   InheritException(exception,&canvas_image->exception); 
     279  InheritException(&image->exception,&canvas_image->exception); 
    280280  canvas_image=DestroyImage(canvas_image); 
    281281  (void) CloseBlob(image); 
  • ImageMagick/trunk/coders/raw.c

    r273 r494  
    275275  } while (count == (ssize_t) length); 
    276276  quantum_info=DestroyQuantumInfo(quantum_info); 
    277   InheritException(exception,&canvas_image->exception); 
     277  InheritException(&image->exception,&canvas_image->exception); 
    278278  canvas_image=DestroyImage(canvas_image); 
    279279  (void) CloseBlob(image); 
  • ImageMagick/trunk/coders/rgb.c

    r79 r494  
    596596    scene++; 
    597597  } while (count == (ssize_t) length); 
    598   InheritException(exception,&image->exception); 
    599598  quantum_info=DestroyQuantumInfo(quantum_info); 
     599  InheritException(&image->exception,&canvas_image->exception); 
    600600  canvas_image=DestroyImage(canvas_image); 
    601601  (void) CloseBlob(image); 
  • ImageMagick/trunk/coders/ycbcr.c

    r79 r494  
    839839    scene++; 
    840840  } while (count == (ssize_t) length); 
    841   InheritException(exception,&image->exception); 
    842841  quantum_info=DestroyQuantumInfo(quantum_info); 
     842  InheritException(&image->exception,&canvas_image->exception); 
    843843  canvas_image=DestroyImage(canvas_image); 
    844844  (void) CloseBlob(image);