dropbox / lepton

Lepton is a tool and file format for losslessly compressing JPEGs by an average of 22%.
https://blogs.dropbox.com/tech/2016/07/lepton-image-compression-saving-22-losslessly-from-images-at-15mbs/
Apache License 2.0
5.01k stars 355 forks source link

Memory leak in vp8_decoder.cc #118

Open cutedog2012 opened 6 years ago

cutedog2012 commented 6 years ago

[ src/lepton/vp8_decoder.cc:244 drain() ] There is a memory leak in VP8ComponentDecoder_SendToVirtualThread::drain() in vp8_decoder.cc. If Line 243 takes true branch, function drain() will return without releasing "data". [ src/lepton/vp8_decoder.cc:278 read() ] Similarly, in function VP8ComponentDecoder_SendToVirtualThread::read(), "data" is leaked if Line 277 takes true branch.