mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 956449: Remove unused variable in ~RDFXMLDataSourceImpl() to fix build warning. r=bsmedberg
This commit is contained in:
parent
df96ea1bab
commit
1af2b4b9bf
@ -21,4 +21,5 @@ UNIFIED_SOURCES += [
|
||||
'rdfutil.cpp',
|
||||
]
|
||||
|
||||
FAIL_ON_WARNINGS = True
|
||||
FINAL_LIBRARY = 'rdf'
|
||||
|
@ -427,13 +427,11 @@ RDFXMLDataSourceImpl::Init()
|
||||
|
||||
RDFXMLDataSourceImpl::~RDFXMLDataSourceImpl(void)
|
||||
{
|
||||
nsresult rv;
|
||||
|
||||
// Unregister first so that nobody else tries to get us.
|
||||
rv = gRDFService->UnregisterDataSource(this);
|
||||
(void) gRDFService->UnregisterDataSource(this);
|
||||
|
||||
// Now flush contents
|
||||
rv = Flush();
|
||||
(void) Flush();
|
||||
|
||||
// Release RDF/XML sink observers
|
||||
mObservers.Clear();
|
||||
|
Loading…
Reference in New Issue
Block a user