Advertisement
PVS-StudioWarnings

PVS-Studio warning V513 for SeqAn

Nov 21st, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.81 KB | None | 0 0
  1. inline bool open(BOOL initital = false) {
  2.   return hThread = CreateThread(
  3.     &ThreadDefaultAttributes,  // default security attributes
  4.     0,                         // use default stack size
  5.     &_start,                   // thread function
  6.     this,                      // argument to thread function
  7.     0,                         // use default creation flags
  8.     &hThreadID);               // returns the thread identifier
  9. }
  10.  
  11. This suspicious code was found in SeqAn project by PVS-Studio static code analyzer.
  12. Warning message is:
  13. V513 Use _beginthreadex/_endthreadex functions instead of CreateThread/ExitThread functions. system_thread.h 75
  14.  
  15. PVS-Studio is a static analyzer for detecting bugs in the source code of applications written in C, C++, C++11, C++/CX. Site: http://www.viva64.com/en/pvs-studio/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement