Advertisement
PVS-StudioWarnings

PVS-Studio warning V519 for tesseract-ocr

Nov 27th, 2014
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.63 KB | None | 0 0
  1. TESSLINE* ApproximateOutline(....) {
  2.   EDGEPT *edgept;
  3.   ....
  4.   edgept = edgesteps_to_edgepts(c_outline, edgepts);
  5.   fix2(edgepts, area);
  6.   edgept = poly2 (edgepts, area);  // 2nd approximation.
  7.   ....
  8. }
  9.  
  10. This suspicious code was found in tesseract-ocr project by PVS-Studio static code analyzer.
  11. Warning message is:
  12. V519 The 'edgept' variable is assigned values twice successively. Perhaps this is a mistake. Check lines: 76, 78. libtesseract303 polyaprx.cpp 78
  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