A call to copyTo crashes (Bug #2331)
Description
See below simple code that reproduces the problem. The call to copyTo creates a sequence of copyTo -> convertTo -> copyTo -> ... calls that kills the stack. The bug was tested against 2.4.0 and COMMIT:a08290d8
Mat m1 = Mat::zeros(1, 10, CV_8UC1);
Mat m2 = Mat::zeros(10, 10, CV_8UC3);
m1.copyTo(m2.row(1));
Associated revisions
fixed bug #2331
Merge pull request #2331 from asmorkalov:android_native_activity_finish
History
Updated by Vadim Pisarevsky over 12 years ago
thanks! fixed in a74a230
- Status changed from Open to Done