class A { public: A() { m_ = malloc(10); } ~A() { free(m_); } private: void* m_; }; void WorkerThread(void* v) { A a; // Line 37 }
What could I place after the comment "// Line 37" to make the code leak 10 bytes of memory for every worker thread I created?