diff options
author | mmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2006-11-21 16:58:36 +0000 |
---|---|---|
committer | mmentovai <mmentovai@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2006-11-21 16:58:36 +0000 |
commit | 4365e2fe41e2d7246a71b364147dd6e7787028f9 (patch) | |
tree | 4a29ea3f580be8a055c282b883430ca6dde5d9d3 /src/tools/windows/symupload | |
parent | Use the reentrant versions of strtok() and gmtime() (#79) r=mmentovai (diff) | |
download | breakpad-4365e2fe41e2d7246a71b364147dd6e7787028f9.tar.xz |
Support GUID-less PDBs (#77). r=bryner
- Handle MDCVInfoPDB20-based PDBs by outputting a signature instead of a guid
in the MODULE line.
- Identify the OS and CPU in the MODULE line.
- Suppress multiple subsequent identical STACK WIN lines.
http://groups.google.com/group/airbag-dev/browse_thread/thread/0f54e2c33ed5d82d
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@70 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/tools/windows/symupload')
-rw-r--r-- | src/tools/windows/symupload/symupload.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/windows/symupload/symupload.cc b/src/tools/windows/symupload/symupload.cc index 602a0568..21545e11 100644 --- a/src/tools/windows/symupload/symupload.cc +++ b/src/tools/windows/symupload/symupload.cc @@ -139,7 +139,7 @@ static bool DumpSymbolsToTempFile(const wchar_t *file, *temp_file_path = temp_filename; - return writer.GetModuleInfo(module_guid, module_age, module_filename); + return writer.GetModuleInfo(module_guid, module_age, module_filename, NULL); } int wmain(int argc, wchar_t *argv[]) { |