Don't pattern-init an unused variable that overallocates the stack

ART is intentionally walking to the stack top (lowest address), but the
pattern initialization is accidentally triggering a sanitizer failure
for an overflow. Removing the pattern initialization from that unused
(and uninitialized) variable restores the original functionality of
accessing every page of the available stack.

Fixes: 148125929
Bug: 131390872

Test: m checkbuild ASAN_OPTIONS=detect_leaks=0 SANITIZE_HOST=address
Change-Id: I2b1e8bdc44044e8165a14a8e7b36dd8616d4a5b3
1 file changed