-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Closed
Labels
Description
uchar *img_r = new uchar[output_height * output_width]; |
uchar *img_g = new uchar[output_height * output_width]; |
uchar *img_b = new uchar[output_height * output_width]; |
float *img_r = new float[output_height * output_width]; |
float *img_g = new float[output_height * output_width]; |
float *img_b = new float[output_height * output_width]; |
Looks like they are not de-allocated anywhere but I'm not sure about that.
Found this when running the opencv_test_fuzzy and reported by LeakSanitizer