libmir / dcv

Computer Vision Library for D Programming Language
http://dcv.dlang.io/
Boost Software License 1.0
91 stars 18 forks source link

Fix contours #135

Closed seagetch closed 1 year ago

seagetch commented 1 year ago

Fixed memory free error of dlist class in utils library.

seagetch commented 1 year ago

I updated the patch. order of free is the problem. this freed object is referred at successive popFront call. So object should be released after popFront is executed.