Hardware Composer Test Lib HBlen off by 1

Change-Id: If51727a041e20afa307e5d1735b77da5a54a712b
diff --git a/opengl/tests/hwc/hwcTestLib.cpp b/opengl/tests/hwc/hwcTestLib.cpp
index b790c51..a468a92 100644
--- a/opengl/tests/hwc/hwcTestLib.cpp
+++ b/opengl/tests/hwc/hwcTestLib.cpp
@@ -719,7 +719,7 @@
             pixel = testRand();
         }
 
-        for (unsigned int y = 0; y <= height; y++) {
+        for (unsigned int y = 0; y < height; y++) {
             hwcTestSetPixel(gBuf, buf, x, y, pixel);
         }
     }