Fix mistake in last checkin (208121).

This commit is contained in:
brendan%mozilla.org 2003-12-17 00:33:50 +00:00
parent 6e66bc626c
commit 9b5d4ac0b1

View File

@ -954,7 +954,7 @@ private:
if (result == NS_OK && outFieldID != NULL) {
JavaClassMember key(clazz, outFieldID);
JNIField* field;
PRBool bFound = theIDTable && theIDTable->Get(key, (void **)field);
PRBool bFound = theIDTable && theIDTable->Get(key, (void **)&field);
if (!bFound) {
field = new JNIField(name, sig, outFieldID);
if (theIDTable)