Re: Firefox crash When using rdf:files in a composite datasource with my rdf datasource component!
BenKwan <[email protected]> Tue, 23 Jun 2009 01:38:58 -0700 (PDT)
| Newsgroups | gmane.comp.mozilla.devel.rdf |
|---|---|
| Organization | http://groups.google.com |
| Message-ID | <7473665b-f7aa-4ca1-a613-b95a39f1e600@c20g2000prh.googlegroups.com> |
i find another way to fix this problem:
GetTarget: function(aSource,aProperty,aTruthValue)
{
var retVal = this._rdfDataSource.GetTarget
(aSource,aProperty,aTruthValue);
if(!retVal)
{
throw Components.results.NS_ERROR_FAILURE;
}
return retVal;
},
Is it mean that the RDFContainerUtils leave the work of disposing
error to the implementation of nsIRDFDataSource?