diff options
author | siggi@chromium.org <siggi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-12 00:27:58 +0000 |
---|---|---|
committer | siggi@chromium.org <siggi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-12 00:27:58 +0000 |
commit | ba31e56dc1ef1f29ddd890df9943dffac7853477 (patch) | |
tree | d8cc480a25c56064f54b2a11edb47a91fe01d8eb /chrome_frame/crash_reporting/nt_loader.h | |
parent | 98bea6510a3c12ce40ddc2190dadb32d726414bf (diff) | |
download | chromium_src-ba31e56dc1ef1f29ddd890df9943dffac7853477.zip chromium_src-ba31e56dc1ef1f29ddd890df9943dffac7853477.tar.gz chromium_src-ba31e56dc1ef1f29ddd890df9943dffac7853477.tar.bz2 |
Heuristically avoid reporting crashes during DLL loading.
Cleanup white space as requested by Robert in CL 882001.
BUG=31980
TEST=Unittests in this change.
Review URL: http://codereview.chromium.org/872004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41367 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/crash_reporting/nt_loader.h')
-rw-r--r-- | chrome_frame/crash_reporting/nt_loader.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome_frame/crash_reporting/nt_loader.h b/chrome_frame/crash_reporting/nt_loader.h index fc4efb1..c751215 100644 --- a/chrome_frame/crash_reporting/nt_loader.h +++ b/chrome_frame/crash_reporting/nt_loader.h @@ -128,13 +128,13 @@ typedef struct _LDR_DATA_TABLE_ENTRY { union { LIST_ENTRY HashLinks; // 0x03c struct { - void* SectionPointer; // 0x03c - ULONG CheckSum; // 0x040 + void* SectionPointer; // 0x03c + ULONG CheckSum; // 0x040 }; }; union { - ULONG TimeDateStamp; // 0x044 - void* LoadedImports; // 0x044 + ULONG TimeDateStamp; // 0x044 + void* LoadedImports; // 0x044 }; void *EntryPointActivationContext; // 0x048 void* PatchInformation; // 0x04c |