зеркало из https://github.com/mozilla/pjs.git
Bug=45018
author=ashuk Files modified jni/org_mozilla_dom_DocumentImpl.cpp This fix makes sure that corner case where call to nsIDOMDocument::CreateEntityReference returns NS_OK, but a null return value for the nsIDOMEntityReference is handled properly thro the exception handling mechanism.
This commit is contained in:
Родитель
ade2376885
Коммит
4670d55535
|
@ -315,7 +315,7 @@ JNIEXPORT jobject JNICALL Java_org_mozilla_dom_DocumentImpl_createEntityReferenc
|
|||
nsresult rv = doc->CreateEntityReference(*name, &ret);
|
||||
nsMemory::Free(name);
|
||||
|
||||
if (NS_FAILED(rv)) {
|
||||
if (NS_FAILED(rv) || ret == nsnull) {
|
||||
JavaDOMGlobals::ExceptionType exceptionType = JavaDOMGlobals::EXCEPTION_RUNTIME;
|
||||
if (NS_ERROR_GET_MODULE(rv) == NS_ERROR_MODULE_DOM &&
|
||||
(rv == NS_ERROR_DOM_INVALID_CHARACTER_ERR ||
|
||||
|
|
Загрузка…
Ссылка в новой задаче