Add new comment

(A) = CORRECT WAY =

(A) = CORRECT WAY =
libraw_processed_image_t* image;
image = iProcessor.dcraw_make_mem_image(&rc);
LibRaw::dcraw_clear_mem(image);

(B) = ERROR =
libraw_processed_image_t* image;
LibRaw::dcraw_clear_mem(image);

How can i know if i have used the (A) or (B) approach to initialize image?