33de12
diff -urNp old/dcraw.c new/dcraw.c
33de12
--- old/dcraw.c	2018-06-14 12:38:10.519964843 +0200
33de12
+++ new/dcraw.c	2018-06-14 13:31:46.304679761 +0200
33de12
@@ -1248,6 +1248,10 @@ void CLASS nikon_load_raw()
33de12
 
33de12
 void CLASS nikon_yuv_load_raw()
33de12
 {
33de12
+#ifdef LIBRAW_LIBRARY_BUILD
33de12
+  if(!image)
33de12
+    throw LIBRAW_EXCEPTION_IO_CORRUPT;
33de12
+#endif
33de12
   int row, col, yuv[4], rgb[3], b, c;
33de12
   UINT64 bitbuf=0;
33de12
 
33de12
@@ -1889,6 +1893,10 @@ void CLASS sinar_4shot_load_raw()
33de12
     unpacked_load_raw();
33de12
     return;
33de12
   }
33de12
+#ifdef LIBRAW_LIBRARY_BUILD
33de12
+  else if(!image)
33de12
+    throw LIBRAW_EXCEPTION_IO_CORRUPT;
33de12
+#endif
33de12
   pixel = (ushort *) calloc (raw_width, sizeof *pixel);
33de12
   merror (pixel, "sinar_4shot_load_raw()");
33de12
   for (shot=0; shot < 4; shot++) {
33de12
@@ -2188,6 +2196,11 @@ void CLASS quicktake_100_load_raw()
33de12
 
33de12
 void CLASS kodak_radc_load_raw()
33de12
 {
33de12
+#ifdef LIBRAW_LIBRARY_BUILD
33de12
+  // All kodak radc images are 768x512
33de12
+  if(width>768 || raw_width>768 || height > 512 || raw_height>512 )
33de12
+    throw LIBRAW_EXCEPTION_IO_CORRUPT;
33de12
+#endif
33de12
   static const char src[] = {
33de12
     1,1, 2,3, 3,4, 4,2, 5,7, 6,5, 7,6, 7,8,
33de12
     1,0, 2,1, 3,3, 4,4, 5,2, 6,7, 7,6, 8,5, 8,8,
33de12
@@ -2348,6 +2361,10 @@ void CLASS gamma_curve (double pwr, doub
33de12
 
33de12
 void CLASS lossy_dng_load_raw()
33de12
 {
33de12
+#ifdef LIBRAW_LIBRARY_BUILD
33de12
+  if(!image)
33de12
+    throw LIBRAW_EXCEPTION_IO_CORRUPT;
33de12
+#endif
33de12
   struct jpeg_decompress_struct cinfo;
33de12
   struct jpeg_error_mgr jerr;
33de12
   JSAMPARRAY buf;
33de12
@@ -2444,6 +2461,10 @@ void CLASS eight_bit_load_raw()
33de12
 
33de12
 void CLASS kodak_c330_load_raw()
33de12
 {
33de12
+#ifdef LIBRAW_LIBRARY_BUILD
33de12
+  if(!image)
33de12
+    throw LIBRAW_EXCEPTION_IO_CORRUPT;
33de12
+#endif
33de12
   uchar *pixel;
33de12
   int row, col, y, cb, cr, rgb[3], c;
33de12
 
33de12
@@ -2469,6 +2490,10 @@ void CLASS kodak_c330_load_raw()
33de12
 
33de12
 void CLASS kodak_c603_load_raw()
33de12
 {
33de12
+#ifdef LIBRAW_LIBRARY_BUILD
33de12
+  if(!image)
33de12
+    throw LIBRAW_EXCEPTION_IO_CORRUPT;
33de12
+#endif
33de12
   uchar *pixel;
33de12
   int row, col, y, cb, cr, rgb[3], c;
33de12
 
33de12
@@ -2596,6 +2621,10 @@ void CLASS kodak_65000_load_raw()
33de12
 
33de12
 void CLASS kodak_ycbcr_load_raw()
33de12
 {
33de12
+#ifdef LIBRAW_LIBRARY_BUILD
33de12
+  if(!image)
33de12
+    throw LIBRAW_EXCEPTION_IO_CORRUPT;
33de12
+#endif
33de12
   short buf[384], *bp;
33de12
   int row, col, len, c, i, j, k, y[2][2], cb, cr, rgb[3];
33de12
   ushort *ip;
33de12
@@ -2624,6 +2653,10 @@ void CLASS kodak_ycbcr_load_raw()
33de12
 
33de12
 void CLASS kodak_rgb_load_raw()
33de12
 {
33de12
+#ifdef LIBRAW_LIBRARY_BUILD
33de12
+  if(!image)
33de12
+    throw LIBRAW_EXCEPTION_IO_CORRUPT;
33de12
+#endif
33de12
   short buf[768], *bp;
33de12
   int row, col, len, c, i, rgb[3];
33de12
   ushort *ip=image[0];
33de12
@@ -2640,6 +2673,10 @@ void CLASS kodak_rgb_load_raw()
33de12
 
33de12
 void CLASS kodak_thumb_load_raw()
33de12
 {
33de12
+#ifdef LIBRAW_LIBRARY_BUILD
33de12
+  if(!image)
33de12
+    throw LIBRAW_EXCEPTION_IO_CORRUPT;
33de12
+#endif
33de12
   int row, col;
33de12
   colors = thumb_misc >> 5;
33de12
   for (row=0; row < height; row++)
33de12
@@ -3109,6 +3146,10 @@ void CLASS foveon_thumb()
33de12
 
33de12
 void CLASS foveon_sd_load_raw()
33de12
 {
33de12
+#ifdef LIBRAW_LIBRARY_BUILD
33de12
+  if(!image)
33de12
+    throw LIBRAW_EXCEPTION_IO_CORRUPT;
33de12
+#endif
33de12
   struct decode *dindex;
33de12
   short diff[1024];
33de12
   unsigned bitbuf=0;
33de12
@@ -3156,6 +3197,10 @@ void CLASS foveon_huff (ushort *huff)
33de12
 
33de12
 void CLASS foveon_dp_load_raw()
33de12
 {
33de12
+#ifdef LIBRAW_LIBRARY_BUILD
33de12
+  if(!image)
33de12
+    throw LIBRAW_EXCEPTION_IO_CORRUPT;
33de12
+#endif
33de12
   unsigned c, roff[4], row, col, diff;
33de12
   ushort huff[512], vpred[2][2], hpred[2];
33de12