SF3436102 convert 32 bit memory pointers to 64 bit where not already converted.

This commit is contained in:
clay_shooter
2012-03-14 03:04:12 +00:00
parent 8726f3a7df
commit 0555df293e
2 changed files with 2 additions and 2 deletions

View File

@@ -190,7 +190,7 @@ JNIEXPORT void JNICALL Java_com_jacob_com_SafeArray_destroy
jfieldID jf = env->GetFieldID(saClass, V_FLD, "J"); jfieldID jf = env->GetFieldID(saClass, V_FLD, "J");
VariantClear(v); VariantClear(v);
delete v; delete v;
env->SetIntField(_this, jf, 0ll); env->SetLongField(_this, jf, 0ll);
} }
} }

View File

@@ -67,7 +67,7 @@ JNIEXPORT void JNICALL Java_com_jacob_com_Variant_release
} }
VariantClear(v); VariantClear(v);
delete v; delete v;
env->SetIntField(_this, jf, (unsigned int)0); env->SetLongField(_this, jf, 0ll);
} }
} }