-
-
Notifications
You must be signed in to change notification settings - Fork 56.5k
Infinite recursion in window_w32.cpp. #22765
Copy link
Copy link
Closed
Labels
Milestone
Description
opencv/modules/highgui/src/window_w32.cpp
Lines 2340 to 2345 in 2aad039
| static inline | |
| std::shared_ptr<CvTrackbar> icvFindTrackbarByName(const std::shared_ptr<CvWindow>& window, const std::string& name) | |
| { | |
| CV_Assert(window); | |
| return icvFindTrackbarByName(window, name); | |
| } |
Looks like there's a dereference missing on window in the return statement, so that the overload taking CvWindow& gets invoked.
Reactions are currently unavailable