unsigned_lesser_than_zero.cocci 875 B

123456789101112131415161718192021222324252627282930313233
  1. /// Unsigned expressions cannot be lesser than zero. Presence of
  2. /// comparisons 'unsigned (<|<=) 0' often indicates a bug,
  3. /// usually wrong type of variable.
  4. ///
  5. // Confidence: High
  6. // Copyright: (C) 2015 Andrzej Hajda, Samsung Electronics Co., Ltd. GPLv2.
  7. // URL: http://coccinelle.lip6.fr/
  8. virtual org
  9. virtual report
  10. @r_cmp depends on !(file in "ext")@
  11. position p;
  12. typedef uint8_t, uint16_t, uint32_t, uint64_t;
  13. {unsigned char, unsigned short, unsigned int, unsigned long, unsigned long long,
  14. size_t, uint8_t, uint16_t, uint32_t, uint64_t} v;
  15. @@
  16. (\( v@p < 0 \| v@p <= 0 \))
  17. @script:python depends on org@
  18. p << r_cmp.p;
  19. @@
  20. msg = "WARNING: Unsigned expression compared with zero."
  21. coccilib.org.print_todo(p[0], msg)
  22. @script:python depends on report@
  23. p << r_cmp.p;
  24. @@
  25. msg = "WARNING: Unsigned expression compared with zero."
  26. coccilib.report.print_report(p[0], msg)