2022-03-15 17:07:25 -04:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2022-03-15 14:57:53 -04:00
|
|
|
From: Daniel Micay <danielmicay@gmail.com>
|
|
|
|
Date: Sun, 17 Mar 2019 21:11:48 -0400
|
|
|
|
Subject: [PATCH] constify JNINativeMethod table
|
|
|
|
|
|
|
|
---
|
|
|
|
common/src/jni/main/cpp/conscrypt/native_crypto.cc | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/common/src/jni/main/cpp/conscrypt/native_crypto.cc b/common/src/jni/main/cpp/conscrypt/native_crypto.cc
|
|
|
|
index 1a0679c3..d838e9ab 100644
|
|
|
|
--- a/common/src/jni/main/cpp/conscrypt/native_crypto.cc
|
|
|
|
+++ b/common/src/jni/main/cpp/conscrypt/native_crypto.cc
|
|
|
|
@@ -9917,7 +9917,7 @@ static jlong NativeCrypto_SSL_get1_session(JNIEnv* env, jclass, jlong ssl_addres
|
|
|
|
#define REF_X509_CRL "L" TO_STRING(JNI_JARJAR_PREFIX) "org/conscrypt/OpenSSLX509CRL;"
|
|
|
|
#define REF_SSL "L" TO_STRING(JNI_JARJAR_PREFIX) "org/conscrypt/NativeSsl;"
|
|
|
|
#define REF_SSL_CTX "L" TO_STRING(JNI_JARJAR_PREFIX) "org/conscrypt/AbstractSessionContext;"
|
|
|
|
-static JNINativeMethod sNativeCryptoMethods[] = {
|
|
|
|
+static const JNINativeMethod sNativeCryptoMethods[] = {
|
|
|
|
CONSCRYPT_NATIVE_METHOD(clinit, "()V"),
|
|
|
|
CONSCRYPT_NATIVE_METHOD(EVP_PKEY_new_RSA, "([B[B[B[B[B[B[B[B)J"),
|
|
|
|
CONSCRYPT_NATIVE_METHOD(EVP_PKEY_new_EC_KEY, "(" REF_EC_GROUP REF_EC_POINT "[B)J"),
|