зеркало из https://github.com/mozilla/pjs.git
Bug 5741, part II. Need to be able to 'get the text' of a null node now, also.
This commit is contained in:
Родитель
3945f41e52
Коммит
d8613f3a74
|
@ -228,8 +228,12 @@ nsRDFContentUtils::GetTextForNode(nsIRDFNode* aNode, nsString& aResult)
|
|||
nsresult rv;
|
||||
nsIRDFResource* resource;
|
||||
nsIRDFLiteral* literal;
|
||||
|
||||
if (NS_SUCCEEDED(rv = aNode->QueryInterface(kIRDFResourceIID, (void**) &resource))) {
|
||||
|
||||
if (! aNode) {
|
||||
aResult.Truncate();
|
||||
rv = NS_OK;
|
||||
}
|
||||
else if (NS_SUCCEEDED(rv = aNode->QueryInterface(kIRDFResourceIID, (void**) &resource))) {
|
||||
nsXPIDLCString p;
|
||||
if (NS_SUCCEEDED(rv = resource->GetValue( getter_Copies(p) ))) {
|
||||
aResult = p;
|
||||
|
|
Загрузка…
Ссылка в новой задаче