Advertisement
PVS-StudioWarnings

PVS-Studio warning V519 for ReactOS

Nov 27th, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.56 KB | None | 0 0
  1. NTSTATUS NTAPI
  2. CreateCdRomDeviceObject(....)
  3. {
  4.   ....
  5.   cddata->XAFlags &= ~XA_USE_6_BYTE;
  6.   cddata->XAFlags = XA_USE_READ_CD | XA_USE_10_BYTE;
  7.   ....
  8. }
  9.  
  10. This suspicious code was found in ReactOS project by PVS-Studio static code analyzer.
  11. Warning message is:
  12. V519 The 'cddata->XAFlags' variable is assigned values twice successively. Perhaps this is a mistake. Check lines: 1290, 1291. cdrom.c 1291
  13.  
  14. 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