Explorar o código

Merge pull request #1923 from bryongloden/patch-1

close opened file descriptors properly
Feng Xiao %!s(int64=9) %!d(string=hai) anos
pai
achega
1102a8a767
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      src/google/protobuf/testing/file.cc

+ 1 - 0
src/google/protobuf/testing/file.cc

@@ -91,6 +91,7 @@ bool File::WriteStringToFile(const string& contents, const string& name) {
 
   if (fwrite(contents.data(), 1, contents.size(), file) != contents.size()) {
     GOOGLE_LOG(ERROR) << "fwrite(" << name << "): " << strerror(errno);
+    fclose(file);
     return false;
   }