Remove duplicate declaration of cvalue


git-svn-id: svn://10.0.0.236/trunk@53270 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
akhil.arora%sun.com
1999-11-11 22:35:14 +00:00
parent 09ff79c694
commit 96f506169a

View File

@@ -136,7 +136,7 @@ JNIEXPORT void JNICALL Java_org_mozilla_dom_AttrImpl_setValue
const char* cvalue = NULL;
jboolean iscopy = JNI_FALSE;
if (jval) {
const char* cvalue = env->GetStringUTFChars(jval, &iscopy);
cvalue = env->GetStringUTFChars(jval, &iscopy);
if (!cvalue) {
PR_LOG(JavaDOMGlobals::log, PR_LOG_ERROR,
("Attr.setValue: GetStringUTFChars failed\n"));