Bug 562580 - warning: 'resource' may be used uninitialized in RDFContentSinkImpl::~RDFContentSinkImpl(), r=jst, a=nthomas for the CLOSED TREE

This commit is contained in:
timeless@mozdev.org 2010-05-06 21:37:45 -07:00
Родитель 41af72ae6c
Коммит 15850cad9e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -363,7 +363,7 @@ RDFContentSinkImpl::~RDFContentSinkImpl()
// pop all the elements off the stack and release them.
PRInt32 i = mContextStack->Length();
while (0 < i--) {
nsIRDFResource* resource;
nsIRDFResource* resource = nsnull;
RDFContentSinkState state;
RDFContentSinkParseMode parseMode;
PopContext(resource, state, parseMode);