Show a code fragment to prevent a dynamically allocated array from being leaked in the event of a fault
short *pa = null;try{pa = new short[16];...}catch(...){}if (pa != null)delete[] pa; Please enable JavaScript to view this page content properly.
Please enable JavaScript to view this page content properly.