nixpkgs/pkgs/tools/backup/zbackup/protobuf-api-change.patch
Harrison Houghton 3b46f18b02 zbackup: fix
The upstream proposed fix doesn't apply cleanly, so here's a version
that does.
2021-10-24 15:06:20 -04:00

12 lines
458 B
Diff

--- a/backup_restorer.cc
+++ b/backup_restorer.cc
@@ -48,7 +48,7 @@
// TODO: this disables size checks for each separate message. Figure a better
// way to do this while keeping them enabled. It seems we need to create an
// instance of CodedInputStream for each message, but it might be expensive
- cis.SetTotalBytesLimit( backupData.size(), -1 );
+ cis.SetTotalBytesLimit( backupData.size() );
// Used when emitting chunks
string chunk;