Fix out-of-bounds array access.

Change-Id: I17099bd2279c7130c14dbb6f6a6618717bc8f96d
diff --git a/jni/com_android_nfc.cpp b/jni/com_android_nfc.cpp
index 0318577..ffdada7 100644
--- a/jni/com_android_nfc.cpp
+++ b/jni/com_android_nfc.cpp
@@ -417,7 +417,7 @@
             case 0x88:
             case 0x98:
             case 0xB8:
-              techList = e->NewIntArray(2);
+              techList = e->NewIntArray(3);
               techItems = e->GetIntArrayElements(techList, NULL);
               techItems[0] = TARGET_TYPE_MIFARE_CLASSIC;
               techItems[1] = TARGET_TYPE_ISO14443_3A;