mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-25 18:53:23 -03:00
Merge pull request #10 from TheBlueMatt/master
Fix JNI for C instead of C++
This commit is contained in:
commit
8ee97f87ac
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
|||
JNIEXPORT jint JNICALL Java_org_bitcoin_NativeSecp256k1_secp256k1_1ecdsa_1verify
|
||||
(JNIEnv* env, jclass classObject, jobject byteBufferObject)
|
||||
{
|
||||
unsigned char* data = (unsigned char*) env->GetDirectBufferAddress(byteBufferObject);
|
||||
unsigned char* data = (unsigned char*) (*env)->GetDirectBufferAddress(env, byteBufferObject);
|
||||
int sigLen = *((int*)(data + 32));
|
||||
int pubLen = *((int*)(data + 32 + 4));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue