|
@@ -2229,17 +2229,19 @@ bool CommandLineInterface::WriteDescriptorSet(
|
|
|
|
|
|
io::FileOutputStream out(fd);
|
|
|
|
|
|
- io::CodedOutputStream coded_out(&out);
|
|
|
- // Determinism is useful here because build outputs are sometimes checked
|
|
|
- // into version control.
|
|
|
- coded_out.SetSerializationDeterministic(true);
|
|
|
- if (!file_set.SerializeToCodedStream(&coded_out)) {
|
|
|
- std::cerr << descriptor_set_out_name_ << ": " << strerror(out.GetErrno())
|
|
|
- << std::endl;
|
|
|
- out.Close();
|
|
|
- return false;
|
|
|
+ {
|
|
|
+ io::CodedOutputStream coded_out(&out);
|
|
|
+ // Determinism is useful here because build outputs are sometimes checked
|
|
|
+ // into version control.
|
|
|
+ coded_out.SetSerializationDeterministic(true);
|
|
|
+ if (!file_set.SerializeToCodedStream(&coded_out)) {
|
|
|
+ std::cerr << descriptor_set_out_name_ << ": " << strerror(out.GetErrno())
|
|
|
+ << std::endl;
|
|
|
+ out.Close();
|
|
|
+ return false;
|
|
|
+ }
|
|
|
}
|
|
|
- coded_out.Trim();
|
|
|
+
|
|
|
if (!out.Close()) {
|
|
|
std::cerr << descriptor_set_out_name_ << ": " << strerror(out.GetErrno())
|
|
|
<< std::endl;
|