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>
This commit is contained in:
Nelson Billing 2019-07-01 10:27:45 -07:00
parent 9cafb376eb
commit c46151db0f

View file

@ -147,7 +147,7 @@ static bool DumpSymbolsToTempFile(const wchar_t *file,
return false; return false;
} }
bool success = writer.WriteMap(temp_file); bool success = writer.WriteSymbols(temp_file);
fclose(temp_file); fclose(temp_file);
if (!success) { if (!success) {
_wunlink(temp_filename); _wunlink(temp_filename);