Fixed the god-awful indentation

This commit is contained in:
mathusummut
2018-05-06 00:01:36 +02:00
parent 643e3820f5
commit 35b7b1f1a6
459 changed files with 204893 additions and 217545 deletions

View File

@@ -32,33 +32,33 @@ AllocRegistry::~AllocRegistry() {
void AllocRegistry::dump(const char *path) {
int leakCount=0;
size_t leakBytes=0;
int leakCount = 0;
size_t leakBytes = 0;
//time_t debugTime = time(NULL);
//struct tm *loctime = localtime (&debugTime);
struct tm loctime = threadsafe_localtime(systemtime_now());
char szBuf2[100]="";
strftime(szBuf2,100,"%Y-%m-%d %H:%M:%S",&loctime);
char szBuf2[100] = "";
strftime(szBuf2, 100, "%Y-%m-%d %H:%M:%S", &loctime);
#ifdef WIN32
FILE* f= _wfopen(utf8_decode(path).c_str(), L"wt");
FILE* f = _wfopen(utf8_decode(path).c_str(), L"wt");
#else
FILE *f= fopen(path, "wt");
FILE *f = fopen(path, "wt");
#endif
if(f) {
fprintf(f, "Memory leak dump at: %s\n\n",szBuf2);
if (f) {
fprintf(f, "Memory leak dump at: %s\n\n", szBuf2);
for(int index = 0; index < maxAllocs; ++index) {
for (int index = 0; index < maxAllocs; ++index) {
AllocInfo &info = allocs[index];
if(info.freetouse == false && info.inuse == true) {
if (info.freetouse == false && info.inuse == true) {
if(info.line > 0) {
if (info.line > 0) {
leakBytes += info.bytes;
//allocs[i].stack = AllocInfo::getStackTrace();
fprintf(f, "Leak #%d.\tfile: %s, line: %d, ptr [%p], bytes: " MG_SIZE_T_SPECIFIER ", array: %d, inuse: %d\n%s\n", ++leakCount, info.file, info.line, info.ptr, info.bytes, info.array,info.inuse,info.stack.c_str());
fprintf(f, "Leak #%d.\tfile: %s, line: %d, ptr [%p], bytes: " MG_SIZE_T_SPECIFIER ", array: %d, inuse: %d\n%s\n", ++leakCount, info.file, info.line, info.ptr, info.bytes, info.array, info.inuse, info.stack.c_str());
}
}
}
@@ -70,7 +70,7 @@ void AllocRegistry::dump(const char *path) {
fclose(f);
}
printf("Memory leak dump summary at: %s\n",szBuf2);
printf("Memory leak dump summary at: %s\n", szBuf2);
printf("Total leaks: %d, " MG_SIZE_T_SPECIFIER " bytes\n", leakCount, leakBytes);
printf("Total allocations: %d, " MG_SIZE_T_SPECIFIER " bytes\n", allocCount, allocBytes);
printf("Not monitored allocations: %d, " MG_SIZE_T_SPECIFIER " bytes\n", nonMonitoredCount, nonMonitoredBytes);