Advertisement
PVS-StudioWarnings

PVS-Studio warning V519 for webrtc

Nov 10th, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.65 KB | None | 0 0
  1. static void UpdateMetrics(AecCore* aec)
  2. {
  3.   ....
  4.   dtmp = 10 * (float)log10(aec->nearlevel.averagelevel /
  5.       (2 * aec->nlpoutlevel.averagelevel) + 1e-10f);
  6.   dtmp2 = 10 * (float)log10(echo / suppressedEcho + 1e-10f);
  7.  
  8.   dtmp = dtmp2;
  9.   ....
  10. }
  11.  
  12. This suspicious code was found in webrtc project by PVS-Studio static code analyzer.
  13. Warning message is:
  14. V519 The 'dtmp' variable is assigned values twice successively. Perhaps this is a mistake. Check lines: 1636, 1640. aec_core.c 1640
  15.  
  16. 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