]> granicus.if.org Git - curl/commitdiff
rand: add comment to skip a clang-tidy false positive
authorDaniel Stenberg <daniel@haxx.se>
Sat, 27 Oct 2018 13:57:31 +0000 (15:57 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 27 Oct 2018 13:59:44 +0000 (15:59 +0200)
lib/rand.c

index 1dc2504acccfb787bd4b68d95c0826f4312cc3fe..6ee45feb121e536bc90a2f6327b1b495b56e55c1 100644 (file)
@@ -5,7 +5,7 @@
  *                            | (__| |_| |  _ <| |___
  *                             \___|\___/|_| \_\_____|
  *
- * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al.
  *
  * This software is licensed as described in the file COPYING, which
  * you should have received as part of this distribution. The terms
@@ -174,6 +174,8 @@ CURLcode Curl_rand_hex(struct Curl_easy *data, unsigned char *rnd,
     return result;
 
   while(num) {
+    /* clang-tidy warns on this line without this comment: */
+    /* NOLINTNEXTLINE(clang-analyzer-core.UndefinedBinaryOperatorResult) */
     *rnd++ = hex[(*bufp & 0xF0)>>4];
     *rnd++ = hex[*bufp & 0x0F];
     bufp++;