Open main menu

CDOT Wiki β

Changes

DPS921/Intel Parallel Studio Inspector

564 bytes added, 20:41, 29 November 2020
False Positive
== False Positive ==
The code below attempts to fool the Intel Parallel Inspector into assuming that the pointer allocated pointers have not been deleted when they have. The pointers address' are copied into a temporary pointer called deletor, which then is used to delete the allocated memory without directly calling the delete operation on the raw pointers themselves. The intel parallel studio does not fall for this attempt either. It accurately does not find a memory leak. However, it still shows a false positive for an uninitialized access error due to the nature of the array.
<syntaxhighlight lang="cpp" line='line'>
}
</syntaxhighlight>
 
== Thread Race Conditions ==
150
edits