Bug 581477 - Silence uninitialized variable warnings in xpcwrappednativeproto.cpp; r=bsmedberg

This commit is contained in:
Atul Aggarwal 2011-09-01 01:56:33 +05:30
parent 632662087f
commit 1f0d1d7bf8

View File

@ -215,8 +215,8 @@ XPCWrappedNativeProto::GetNewOrUsed(XPCCallContext& ccx,
NS_ASSERTION(ClassInfo, "bad param");
AutoMarkingWrappedNativeProtoPtr proto(ccx);
ClassInfo2WrappedNativeProtoMap* map;
XPCLock* lock;
ClassInfo2WrappedNativeProtoMap* map = nsnull;
XPCLock* lock = nsnull;
JSBool shared;
JSUint32 ciFlags;