Advertisement
PVS-StudioWarnings

PVS-Studio warning V519 for UltimateTCPIP

Nov 20th, 2014
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.52 KB | None | 0 0
  1. int CUH_Control::SetHistoryLength(int len){
  2.   ...
  3.   prev = m_HLEndPosPtr->m_prev;
  4.   prev = m_HLEndPosPtr->m_next = NULL;
  5.   ...
  6. }
  7.  
  8. This suspicious code was found in UltimateTCPIP project by PVS-Studio static code analyzer.
  9. Warning message is:
  10. V519 The 'prev' object is assigned values twice successively. Perhaps this is a mistake. UTHistory uh_ctrl.cpp 787
  11.  
  12. 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