Fix ASAN bot.

TBR=caryclark@google.com

BUG=skia:

GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=3591

Change-Id: Ib80ee9c5a3277de64bcde85383ad712956118295
Reviewed-on: https://skia-review.googlesource.com/3591
Commit-Queue: Mike Klein <mtklein@chromium.org>
Reviewed-by: Mike Klein <mtklein@chromium.org>
diff --git a/tests/PathOpsChalkboardTest.cpp b/tests/PathOpsChalkboardTest.cpp
index 5b66013..8c74e7f 100644
--- a/tests/PathOpsChalkboardTest.cpp
+++ b/tests/PathOpsChalkboardTest.cpp
@@ -142,7 +142,7 @@
                     for (int i = 0; i < bitCount; ++i) {
                         int bit;
                         do {
-                            bit = r.nextRangeU(0, 64);
+                            bit = r.nextRangeU(0, 63);
                         } while (testlines & (1LL << bit));
                         testlines |= 1LL << bit;
                     }