Skip to content

Files

Latest commit

 

History

History
11 lines (6 loc) · 310 Bytes

unsafeClassCanLeak.md

File metadata and controls

11 lines (6 loc) · 310 Bytes

Pattern: Use of unsafe class

Issue: -

Description

The class is unsafe, wrong usage can cause memory/resource leaks. This can for instance be fixed by adding proper cleanup in the destructor.

Further Reading