with this code with this code (approximatively what i do), in release, i crash(heap corruption) with recycle. If i remove recycle, doesn't crash. heap corruption could be in recycle? mabe it's the two reclycle call (me and libraw destructor) wich corrupt heap? #include "libraw.h" #include <vector> #include <iostream> #include <fstream> int main (int argc, char * argv[]) { for(int i =1;true;++i) { std::cout <<"image "<<i<<std::endl; std::vector<char > buff; std::ifstream f; f.open(argv[1],std::iostream::binary); long size; { long begin; begin = f.tellg(); f.seekg (0, std::ios::end); size = long(f.tellg()) - begin; f.seekg (0, std::ios::beg); } buff.resize(size); f.read(&buff[0],size); LibRaw proc; std::cout <<"open buffer : " << proc.open_buffer(&buff[0],size) <<std::endl; std::cout <<"unpack : " << proc.unpack()<<std::endl; std::cout <<"recycle"<<std::endl<<std::endl; proc.recycle(); } return 0; } <cpp> reply
with this code (approximatively what i do), in release, i crash(heap corruption) with recycle.
If i remove recycle, doesn't crash.
heap corruption could be in recycle? mabe it's the two reclycle call (me and libraw destructor) wich corrupt heap?