Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix uninit read Defect in SoundPosMap
The `*this = cpy` statement calls the copy constructor, which does `delete m_pImpl` while the field is uninitialized. Just removing it should be fine, we allocate a copy of the m_pImpl anyways and that is the only field in the type.
- Loading branch information