Bug 842931 - Remove unused private member variable nsPKCS12Blob::mTmpFilePath. r=bsmith

This commit is contained in:
Chris Peterson 2013-02-20 00:47:12 -08:00
parent 1dcf4672e1
commit 0eff11fde2
2 changed files with 0 additions and 4 deletions

View File

@ -51,7 +51,6 @@ static NS_DEFINE_CID(kNSSComponentCID, NS_NSSCOMPONENT_CID);
// constructor
nsPKCS12Blob::nsPKCS12Blob():mCertArray(0),
mTmpFile(nullptr),
mTmpFilePath(nullptr),
mDigest(nullptr),
mDigestIterator(nullptr),
mTokenSet(false)
@ -830,4 +829,3 @@ nsPKCS12Blob::handleError(int myerr)
if (NS_SUCCEEDED(rv))
(void) nssComponent->ShowAlertFromStringBundle(msgID);
}

View File

@ -76,7 +76,6 @@ private:
// NSPR file I/O for export file
PRFileDesc *mTmpFile;
char *mTmpFilePath;
// simulated file I/O for "in memory" temporary digest data
nsCString *mDigest;
@ -95,4 +94,3 @@ private:
};
#endif /* _NS_PKCS12BLOB_H_ */