summaryrefslogtreecommitdiff
path: root/www/iridium/files/patch-third__party_snappy_src_snappy.h
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2020-07-23 16:31:18 +0000
committerRene Ladan <rene@FreeBSD.org>2020-07-23 16:31:18 +0000
commit651302b592fe54c5197641402df87ff216c27903 (patch)
tree784a10fc6050d3be8786fd6f4f954d7802bd9204 /www/iridium/files/patch-third__party_snappy_src_snappy.h
parentAdd compiler:c++14-lang to USES to atttempt to fix on GCC-based systems: (diff)
www/iridium: update to 2020.04.81
PR: 245959 Submitted by: Matthias Wolf MFH: 2020Q3 Security: any Chromium vulnerability between 73 and 81
Diffstat (limited to 'www/iridium/files/patch-third__party_snappy_src_snappy.h')
-rw-r--r--www/iridium/files/patch-third__party_snappy_src_snappy.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/www/iridium/files/patch-third__party_snappy_src_snappy.h b/www/iridium/files/patch-third__party_snappy_src_snappy.h
deleted file mode 100644
index 824b209ee23c..000000000000
--- a/www/iridium/files/patch-third__party_snappy_src_snappy.h
+++ /dev/null
@@ -1,20 +0,0 @@
---- third_party/snappy/src/snappy.h.orig 2020-01-22 18:43:16 UTC
-+++ third_party/snappy/src/snappy.h
-@@ -73,7 +73,7 @@ namespace snappy {
- // Original contents of *output are lost.
- //
- // REQUIRES: "input[]" is not an alias of "*output".
-- size_t Compress(const char* input, size_t input_length, string* output);
-+ size_t Compress(const char* input, size_t input_length, std::string* output);
-
- // Decompresses "compressed[0,compressed_length-1]" to "*uncompressed".
- // Original contents of "*uncompressed" are lost.
-@@ -82,7 +82,7 @@ namespace snappy {
- //
- // returns false if the message is corrupted and could not be decompressed
- bool Uncompress(const char* compressed, size_t compressed_length,
-- string* uncompressed);
-+ std::string* uncompressed);
-
- // Decompresses "compressed" to "*uncompressed".
- //