mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-26 16:09:35 -05:00
Memory leak and compiler warnings fixes:
- memory leaks in pqi/cleanupxpgp.cc , 2 new char[] => 2 delete[] - reordering some constructors' initializing order - char* myString = "foo" constructs must be prefixed by "const" - using size_t for variable types when dealing with STL git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3079 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
5f2f87537b
commit
21efccfdd6
@ -82,7 +82,7 @@ bool PathExpression::eval(FileEntry *file){
|
|||||||
bool ExtExpression::eval(FileEntry *file){
|
bool ExtExpression::eval(FileEntry *file){
|
||||||
std::string ext;
|
std::string ext;
|
||||||
/*Get the part of the string after the last instance of . in the filename */
|
/*Get the part of the string after the last instance of . in the filename */
|
||||||
unsigned int index = file->name.find_last_of('.');
|
size_t index = file->name.find_last_of('.');
|
||||||
if (index != std::string::npos) {
|
if (index != std::string::npos) {
|
||||||
ext = file->name.substr(index+1);
|
ext = file->name.substr(index+1);
|
||||||
if (ext != "" ){
|
if (ext != "" ){
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
static const time_t UPLOAD_CHUNK_MAPS_TIME = 30 ; // time to ask for a new chunkmap from uploaders in seconds.
|
static const time_t UPLOAD_CHUNK_MAPS_TIME = 30 ; // time to ask for a new chunkmap from uploaders in seconds.
|
||||||
|
|
||||||
ftFileProvider::ftFileProvider(std::string path, uint64_t size, std::string
|
ftFileProvider::ftFileProvider(std::string path, uint64_t size, std::string
|
||||||
hash) : mSize(size), hash(hash), file_name(path), fd(NULL),transfer_rate(0),total_size(0),req_loc(0)
|
hash) : mSize(size), hash(hash), file_name(path), fd(NULL),req_loc(0),transfer_rate(0),total_size(0)
|
||||||
{
|
{
|
||||||
RsStackMutex stack(ftcMutex); /********** STACK LOCKED MTX ******/
|
RsStackMutex stack(ftcMutex); /********** STACK LOCKED MTX ******/
|
||||||
clients_chunk_maps.clear();
|
clients_chunk_maps.clear();
|
||||||
|
@ -106,7 +106,7 @@ gpg_error_t pgp_pwd_callback(void *hook, const char *uid_hint, const char *passp
|
|||||||
}
|
}
|
||||||
|
|
||||||
AuthGPG::AuthGPG()
|
AuthGPG::AuthGPG()
|
||||||
:gpgmeInit(false),gpgmeKeySelected(false),p3Config(CONFIG_TYPE_AUTHGPG)
|
:p3Config(CONFIG_TYPE_AUTHGPG),gpgmeInit(false),gpgmeKeySelected(false)
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
RsStackReadWriteMutex stack(pgpMtx, RsReadWriteMutex::WRITE_LOCK); /******* LOCKED ******/
|
RsStackReadWriteMutex stack(pgpMtx, RsReadWriteMutex::WRITE_LOCK); /******* LOCKED ******/
|
||||||
|
@ -403,7 +403,7 @@ X509 *SignX509Certificate(X509_NAME *issuer, EVP_PKEY *privkey, X509_REQ *req, l
|
|||||||
|
|
||||||
|
|
||||||
AuthSSL::AuthSSL()
|
AuthSSL::AuthSSL()
|
||||||
:init(0), sslctx(NULL), own_private_key(NULL), own_public_key(NULL), p3Config(CONFIG_TYPE_AUTHSSL)
|
: p3Config(CONFIG_TYPE_AUTHSSL), init(0), sslctx(NULL), own_private_key(NULL), own_public_key(NULL)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,35 +48,35 @@ std::string cleanUpCertificate(std::string badCertificate)
|
|||||||
*/
|
*/
|
||||||
char * cleanCertificate=new char[badCertificate.length()+100];
|
char * cleanCertificate=new char[badCertificate.length()+100];
|
||||||
//The entire certificate begin tag
|
//The entire certificate begin tag
|
||||||
char * beginCertTag="-----BEGIN";
|
const char * beginCertTag="-----BEGIN";
|
||||||
//The entire certificate end tag
|
//The entire certificate end tag
|
||||||
char * endCertTag="-----END";
|
const char * endCertTag="-----END";
|
||||||
//Tag containing dots. The common part of both start and end tags
|
//Tag containing dots. The common part of both start and end tags
|
||||||
char * commonTag="-----";
|
const char * commonTag="-----";
|
||||||
//Only BEGIN part of the begin tag
|
//Only BEGIN part of the begin tag
|
||||||
char * beginTag="BEGIN";
|
const char * beginTag="BEGIN";
|
||||||
//Only END part of the end tag
|
//Only END part of the end tag
|
||||||
char * endTag="END";
|
const char * endTag="END";
|
||||||
//The start index of the ----- part of the certificate begin tag
|
//The start index of the ----- part of the certificate begin tag
|
||||||
int beginCertStartIdx1=0;
|
size_t beginCertStartIdx1=0;
|
||||||
//The start index of the BEGIN part of the certificate begin tag
|
//The start index of the BEGIN part of the certificate begin tag
|
||||||
int beginCertStartIdx2=0;
|
size_t beginCertStartIdx2=0;
|
||||||
//The start index of the end part(-----) of the certificate begin tag. The begin tag ends with -----. Example -----BEGIN XPGP CERTIFICATE-----
|
//The start index of the end part(-----) of the certificate begin tag. The begin tag ends with -----. Example -----BEGIN XPGP CERTIFICATE-----
|
||||||
int beginCertEndIdx=0;
|
size_t beginCertEndIdx=0;
|
||||||
//The start index of the ----- part of the certificate end tag
|
//The start index of the ----- part of the certificate end tag
|
||||||
int endCertStartIdx1=0;
|
size_t endCertStartIdx1=0;
|
||||||
//The start index of the END part of the certificate end tag
|
//The start index of the END part of the certificate end tag
|
||||||
int endCertStartIdx2=0;
|
size_t endCertStartIdx2=0;
|
||||||
//The start index of the end part(-----) of the certificate end tag. The begin tag ends with -----. Example -----BEGIN XPGP CERTIFICATE-----
|
//The start index of the end part(-----) of the certificate end tag. The begin tag ends with -----. Example -----BEGIN XPGP CERTIFICATE-----
|
||||||
int endCertEndIdx=0;
|
size_t endCertEndIdx=0;
|
||||||
//The length of the bad certificate.
|
//The length of the bad certificate.
|
||||||
int lengthOfCert=badCertificate.length();
|
size_t lengthOfCert=badCertificate.length();
|
||||||
//The current index value in the cleaned certificate.
|
//The current index value in the cleaned certificate.
|
||||||
int currCleanCertIdx=0;
|
size_t currCleanCertIdx=0;
|
||||||
//The current index value in the bad certificate
|
//The current index value in the bad certificate
|
||||||
int currBadCertIdx=0;
|
size_t currBadCertIdx=0;
|
||||||
//Temporary index value
|
//Temporary index value
|
||||||
int tmpIdx=0;
|
size_t tmpIdx=0;
|
||||||
//Boolean flag showing if the begin tag or the end tag has been found
|
//Boolean flag showing if the begin tag or the end tag has been found
|
||||||
bool found=false;
|
bool found=false;
|
||||||
/*
|
/*
|
||||||
@ -94,7 +94,7 @@ std::string cleanUpCertificate(std::string badCertificate)
|
|||||||
if(beginCertStartIdx2!=std::string::npos)
|
if(beginCertStartIdx2!=std::string::npos)
|
||||||
{
|
{
|
||||||
found=true;
|
found=true;
|
||||||
for(int i=beginCertStartIdx1+strlen(commonTag);i<beginCertStartIdx2;i++)
|
for(size_t i=beginCertStartIdx1+strlen(commonTag);i<beginCertStartIdx2;i++)
|
||||||
{
|
{
|
||||||
if(badCertificate[i]!=' ' && badCertificate[i]!='\n' )
|
if(badCertificate[i]!=' ' && badCertificate[i]!='\n' )
|
||||||
{
|
{
|
||||||
@ -139,7 +139,7 @@ std::string cleanUpCertificate(std::string badCertificate)
|
|||||||
if(endCertStartIdx2!=std::string::npos)
|
if(endCertStartIdx2!=std::string::npos)
|
||||||
{
|
{
|
||||||
found=true;
|
found=true;
|
||||||
for(int i=endCertStartIdx1+strlen(commonTag);i<endCertStartIdx2;i++)
|
for(size_t i=endCertStartIdx1+strlen(commonTag);i<endCertStartIdx2;i++)
|
||||||
{
|
{
|
||||||
if(badCertificate[i]!=' '&& badCertificate[i]!='\n')
|
if(badCertificate[i]!=' '&& badCertificate[i]!='\n')
|
||||||
{
|
{
|
||||||
@ -171,7 +171,7 @@ std::string cleanUpCertificate(std::string badCertificate)
|
|||||||
/*
|
/*
|
||||||
Copying the begin tag(-----BEGIN) to the clean certificate
|
Copying the begin tag(-----BEGIN) to the clean certificate
|
||||||
*/
|
*/
|
||||||
for(int i=0;i<strlen(beginCertTag);i++)
|
for(size_t i=0;i<strlen(beginCertTag);i++)
|
||||||
{
|
{
|
||||||
cleanCertificate[currCleanCertIdx+i]=beginCertTag[i];
|
cleanCertificate[currCleanCertIdx+i]=beginCertTag[i];
|
||||||
|
|
||||||
@ -209,7 +209,7 @@ std::string cleanUpCertificate(std::string badCertificate)
|
|||||||
/*
|
/*
|
||||||
Copying the end part of the certificate start tag(-----).
|
Copying the end part of the certificate start tag(-----).
|
||||||
*/
|
*/
|
||||||
for(int i=0;i<strlen(commonTag);i++)
|
for(size_t i=0;i<strlen(commonTag);i++)
|
||||||
{
|
{
|
||||||
cleanCertificate[currCleanCertIdx]='-';
|
cleanCertificate[currCleanCertIdx]='-';
|
||||||
currCleanCertIdx++;
|
currCleanCertIdx++;
|
||||||
@ -282,7 +282,7 @@ std::string cleanUpCertificate(std::string badCertificate)
|
|||||||
Copying the begining part of the certificate end tag. Copying
|
Copying the begining part of the certificate end tag. Copying
|
||||||
-----END part of the tag.
|
-----END part of the tag.
|
||||||
*/
|
*/
|
||||||
for(int i=0;i<strlen(endCertTag);i++)
|
for(size_t i=0;i<strlen(endCertTag);i++)
|
||||||
{
|
{
|
||||||
cleanCertificate[currCleanCertIdx+i]=endCertTag[i];
|
cleanCertificate[currCleanCertIdx+i]=endCertTag[i];
|
||||||
|
|
||||||
@ -321,7 +321,7 @@ std::string cleanUpCertificate(std::string badCertificate)
|
|||||||
/*
|
/*
|
||||||
Copying the end part(-----) of the end tag in the certificate.
|
Copying the end part(-----) of the end tag in the certificate.
|
||||||
*/
|
*/
|
||||||
for(int i=0;i<strlen(commonTag);i++)
|
for(size_t i=0;i<strlen(commonTag);i++)
|
||||||
{
|
{
|
||||||
cleanCertificate[currCleanCertIdx]='-';
|
cleanCertificate[currCleanCertIdx]='-';
|
||||||
currCleanCertIdx++;
|
currCleanCertIdx++;
|
||||||
@ -333,29 +333,25 @@ std::string cleanUpCertificate(std::string badCertificate)
|
|||||||
Copying over the cleaned certificate to a new buffer.
|
Copying over the cleaned certificate to a new buffer.
|
||||||
*/
|
*/
|
||||||
char * cleanCert=new char[currCleanCertIdx+1];
|
char * cleanCert=new char[currCleanCertIdx+1];
|
||||||
for(int i=0;i<currCleanCertIdx;i++ )
|
for(size_t i=0;i<currCleanCertIdx;i++ )
|
||||||
{
|
{
|
||||||
cleanCert[i]=cleanCertificate[i];
|
cleanCert[i]=cleanCertificate[i];
|
||||||
}
|
}
|
||||||
cleanCert[currCleanCertIdx]='\0';
|
cleanCert[currCleanCertIdx]='\0';
|
||||||
std::string cleanCertificateStr=cleanCert;
|
std::string cleanCertificateStr=cleanCert;
|
||||||
delete cleanCertificate;
|
delete[] cleanCertificate;
|
||||||
//delete cleanCert;
|
delete[] cleanCert;
|
||||||
|
|
||||||
return cleanCertificateStr;
|
return cleanCertificateStr;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int findEndIdxOfCertStartTag(std::string badCertificate)
|
int findEndIdxOfCertStartTag(std::string badCertificate)
|
||||||
{
|
{
|
||||||
int idxTag1=0;
|
size_t idxTag1=0;
|
||||||
int tmpIdx=0;
|
size_t tmpIdx=0;
|
||||||
int idxTag2=0;
|
size_t idxTag2=0;
|
||||||
char * tag1="---";
|
const char * tag1="---";
|
||||||
char * tag2="---";
|
const char * tag2="---";
|
||||||
bool found=false;
|
bool found=false;
|
||||||
while(found==false && (idxTag1=badCertificate.find(tag1,tmpIdx))!=std::string::npos)
|
while(found==false && (idxTag1=badCertificate.find(tag1,tmpIdx))!=std::string::npos)
|
||||||
{
|
{
|
||||||
@ -364,7 +360,7 @@ int findEndIdxOfCertStartTag(std::string badCertificate)
|
|||||||
if(idxTag2!=std::string::npos)
|
if(idxTag2!=std::string::npos)
|
||||||
{
|
{
|
||||||
found=true;
|
found=true;
|
||||||
for(int i=idxTag1+strlen(tag1);i<idxTag2;i++)
|
for(size_t i=idxTag1+strlen(tag1);i<idxTag2;i++)
|
||||||
{
|
{
|
||||||
if(badCertificate[i]!=' ')
|
if(badCertificate[i]!=' ')
|
||||||
{
|
{
|
||||||
|
@ -3691,7 +3691,7 @@ void peerConnectState::updateIpAddressList(const IpAddressTimed& ipTimed)
|
|||||||
// 5 - cut to the fixed number of retained addresses.
|
// 5 - cut to the fixed number of retained addresses.
|
||||||
|
|
||||||
std::list<IpAddressTimed>::iterator it ;
|
std::list<IpAddressTimed>::iterator it ;
|
||||||
int cnt = 0 ;
|
uint32_t cnt = 0 ;
|
||||||
for(it = ipAddressList.begin(); it!=(ipAddressList.end()) ;)
|
for(it = ipAddressList.begin(); it!=(ipAddressList.end()) ;)
|
||||||
if(cnt >= PEER_IP_CONNECT_STATE_MAX_LIST_SIZE)
|
if(cnt >= PEER_IP_CONNECT_STATE_MAX_LIST_SIZE)
|
||||||
{
|
{
|
||||||
|
@ -204,7 +204,7 @@ bool getRawString(void *data, uint32_t size, uint32_t *offset, std::string &outS
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
uint8_t *buf = &(((uint8_t *) data)[*offset]);
|
uint8_t *buf = &(((uint8_t *) data)[*offset]);
|
||||||
for (int i = 0; i < len; i++)
|
for (uint32_t i = 0; i < len; i++)
|
||||||
{
|
{
|
||||||
outStr += buf[i];
|
outStr += buf[i];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user