mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 13:02:57 +00:00
Bug 336110 Missing out-of-memory check at directory/xpcom/base/src/nsLDAPConnection.cpp:1002. r/sr=dmose
This commit is contained in:
parent
2353c994b0
commit
ab27413ce3
@ -1005,9 +1005,8 @@ nsLDAPConnection::OnLookupComplete(nsICancelable *aRequest,
|
|||||||
// all locking etc. in nsLDAPConnection::Release().
|
// all locking etc. in nsLDAPConnection::Release().
|
||||||
//
|
//
|
||||||
mRunnable = new nsLDAPConnectionLoop();
|
mRunnable = new nsLDAPConnectionLoop();
|
||||||
NS_ADDREF(mRunnable);
|
NS_IF_ADDREF(mRunnable);
|
||||||
rv = mRunnable->Init();
|
if (!mRunnable || NS_FAILED(mRunnable->Init())) {
|
||||||
if (NS_FAILED(rv)) {
|
|
||||||
rv = NS_ERROR_OUT_OF_MEMORY;
|
rv = NS_ERROR_OUT_OF_MEMORY;
|
||||||
} else {
|
} else {
|
||||||
// Here we keep a weak reference in the runnable object to the
|
// Here we keep a weak reference in the runnable object to the
|
||||||
|
Loading…
x
Reference in New Issue
Block a user