aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNelson Billing <nbilling@google.com>2019-07-01 10:27:45 -0700
committerNelson Billing <nbilling@google.com>2019-07-01 17:49:32 +0000
commitc46151db0ffd1a8dae914e45f1212ef427f61ed3 (patch)
treea0aeee97019584ff1b7326f65e2b3fe854194dce /src
parentExplicitly LoadLibrary dbghelp.dll in symbol converter. (diff)
downloadbreakpad-c46151db0ffd1a8dae914e45f1212ef427f61ed3.tar.xz
Fix Windows symupload after PE-only MD refactor.
- I think I previously fixed this for dump_syms, but must have missed the symupload one because it didn't have a gn target. Change-Id: Ibf4daa0dc874f329c2ee7c7b3d4de1ee6bc68d13 Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/1682717 Reviewed-by: Mark Mentovai <mark@chromium.org>
Diffstat (limited to 'src')
-rw-r--r--src/tools/windows/symupload/symupload.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/windows/symupload/symupload.cc b/src/tools/windows/symupload/symupload.cc
index 708a0bdf..7e302932 100644
--- a/src/tools/windows/symupload/symupload.cc
+++ b/src/tools/windows/symupload/symupload.cc
@@ -147,7 +147,7 @@ static bool DumpSymbolsToTempFile(const wchar_t *file,
return false;
}
- bool success = writer.WriteMap(temp_file);
+ bool success = writer.WriteSymbols(temp_file);
fclose(temp_file);
if (!success) {
_wunlink(temp_filename);