Fix Windows native symbol uploads.

- We were appending a CRLF to uploaded files, which is okay for Breakpad
  symbols but breaks binaries (PE/PDB).
- Removed the CRLF after files in the request body to fix issue. Tested with
  Breakpad, PE, and PDB uploads.

Change-Id: I95ee7c51bf981cdb2e55cc720a7813cf7afa21ce
Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/4038506
Reviewed-by: Joshua Peraza <jperaza@chromium.org>
Reviewed-by: Zequan Wu <zequanwu@google.com>
This commit is contained in:
Nelson Billing 2022-11-18 10:48:12 -08:00
parent 522bd2337a
commit c7acbcef04

View File

@ -390,7 +390,6 @@ namespace {
if (!contents.empty()) { if (!contents.empty()) {
request_body->append(&(contents[0]), contents.size()); request_body->append(&(contents[0]), contents.size());
} }
request_body->append("\r\n");
return true; return true;
} }