diff options
author | stoyan@google.com <stoyan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-23 19:22:56 +0000 |
---|---|---|
committer | stoyan@google.com <stoyan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-23 19:22:56 +0000 |
commit | c50574cda7381d8778ecbf63f013444d08de94bc (patch) | |
tree | 6e50cd4f1d29c5d02c96234fcede5784c041b369 /chrome_frame | |
parent | 90aca24d74f13b7fb864caafb92e088a91b15903 (diff) | |
download | chromium_src-c50574cda7381d8778ecbf63f013444d08de94bc.zip chromium_src-c50574cda7381d8778ecbf63f013444d08de94bc.tar.gz chromium_src-c50574cda7381d8778ecbf63f013444d08de94bc.tar.bz2 |
Comment fixed.
TBR=amit
Review URL: http://codereview.chromium.org/335013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29924 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r-- | chrome_frame/crash_reporting/vectored_handler-impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome_frame/crash_reporting/vectored_handler-impl.h b/chrome_frame/crash_reporting/vectored_handler-impl.h index 5c6eed7..f4ae117 100644 --- a/chrome_frame/crash_reporting/vectored_handler-impl.h +++ b/chrome_frame/crash_reporting/vectored_handler-impl.h @@ -57,7 +57,7 @@ LONG WINAPI VectoredHandlerT<E>::VectoredHandler( } // Ignore custom exception codes. - // MSXML likes to raise 0xC0000001 while parsing. + // MSXML likes to raise 0xE0000001 while parsing. // Note the C++ SEH (0xE06D7363) also fails in that range. if (exceptionCode & APPLICATION_ERROR_MASK) { return ExceptionContinueSearch; |